https://bz.apache.org/bugzilla/show_bug.cgi?id=59805
--- Comment #3 from [email protected] --- Thank you for the quick response. Maybe you could add LocaleUtil.resetUserTimeZone and LocaleUtil.resetUserLocale methods and call ThreadLocal.remove in them. Then it will be user's responsibility to avoid memory leaks. There are other ways to address the issue, such as: - call ThreadLocal.remove for each request using a servlet filter (Filter.doFilter) - clear all references to the ThreadLocal when a servlet context is destroyed (ServletContextListener.contextDestroyed) But it seems those solutions are too much. -- 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]
