We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jetty version
9.4.31.v20200723
Java version
11
OS type/version
any
Description
When NullSessionCacheFactory is in use, there is always a warring in logs
NullSessionCacheFactory
WARN org.eclipse.jetty.server.session - Ignoring eviction setting: 0
There reason for this is that AbstractSessionCacheFactory (super class for NullSessionCacheFactory) always calls setEvictionPolicy
AbstractSessionCacheFactory
setEvictionPolicy
@Override public SessionCache getSessionCache(SessionHandler handler) { SessionCache cache = newSessionCache(handler); cache.setEvictionPolicy(getEvictionPolicy());
IMO Log level should be debug at most.
debug
The text was updated successfully, but these errors were encountered:
Issue #5268 Change WARN to DEBUG for NullSessionCache eviction setter.
840d551
Signed-off-by: Jan Bartel <janb@webtide.com>
Thanks for the issue, I've raised #5270
Sorry, something went wrong.
Issue #5268 Change WARN to DEBUG for NullSessionCache eviction setter. (
bd589de
#5270) Signed-off-by: Jan Bartel <janb@webtide.com>
Fixed, thanks.
janbartel
No branches or pull requests
Jetty version
9.4.31.v20200723
Java version
11
OS type/version
any
Description
When
NullSessionCacheFactory
is in use, there is always a warring in logsThere reason for this is that
AbstractSessionCacheFactory
(super class forNullSessionCacheFactory
) always callssetEvictionPolicy
IMO Log level should be
debug
at most.The text was updated successfully, but these errors were encountered: