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

Konstantin Kolinko <[email protected]> changed:

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

--- Comment #12 from Konstantin Kolinko <[email protected]> ---
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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to