pon., 14 sie 2023 o 19:52 Tellis, Wyatt
<wyatt.tel...@ucsf.edu.invalid> napisał(a):
> Any luck with tracking the cause?

Yeah, I finally found the core issue, it's related to
https://issues.apache.org/jira/browse/WW-5196

Basically instead of using:

public Object get(final String key) {
    return request.getAttribute(key);
}

I just have to use a proper signature which is:

public Object get(final Object key) {
    return request.getAttribute(key.toString());
}

Would you mind opening a ticket in our JIRA?
https://issues.apache.org/jira/projects/WW/issues/


Kind regards
-- 
Łukasz
+ 48 606 323 122 http://www.lenart.org.pl/

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org

Reply via email to