https://issues.apache.org/bugzilla/show_bug.cgi?id=54191

Konstantin Kolinko <knst.koli...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEEDINFO                    |RESOLVED
         Resolution|---                         |INVALID

--- Comment #12 from Konstantin Kolinko <knst.koli...@gmail.com> ---
Your UserAgentInfo class does not support multithreading.

The problem is that you store a reference to this class in a field of your
LoginFilter class.

Note that the Filter is created only once and the single instance of the filter
processes all incoming requests. So the same UserAgentInfo instance is reused
by multiple requests in parallel and thus contains wrong data.

-- 
You are receiving this mail because:
You are the assignee for the bug.

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

Reply via email to