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: dev@tomcat.apache.org
          Reporter: apa...@leocap.com

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: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to