https://bz.apache.org/bugzilla/show_bug.cgi?id=58582
Bug ID: 58582
Summary: org.apache.catalina.realm.CombinedRealm should
implement backgroundProcess
Product: Tomcat 8
Version: trunk
Hardware: All
OS: All
Status: NEW
Severity: minor
Priority: P2
Component: Catalina
Assignee: [email protected]
Reporter: [email protected]
org.apache.catalina.realm.CombinedRealm should implement backgroundProcess() by
calling this method on each of the Realms it manages e.g.
@Override
public void backgroundProcess()
{
for( Realm r: realms )
r.backgroundProcess();
// for Tomcat9 ;-)
// realms.forEach( r -> r.backgroundProcess() );
}
Without this, the backgroundProcess() of a Realm that is wrapped by
CombinedRealm or LockOutRealm (which extends CombinedRealm) is not called.
Aidan.
--
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]