Hi,

like Filip state on tomcat-user some time ago that DeltaManager doesn't
support the useDirtyFlag=false attribute. 

http://www.mail-archive.com/[EMAIL PROTECTED]/msg136306.html

I didn't find any documentation so I suggest (a) better documentation of
this fact, i.e. in server.xml, and (b) throwing an exception whenever
someone tries to use useDirtyFlag=false on DeltaManager, i.e. like this
in DeltaManager.java: 

------------------------------------------------------------

    public void setUseDirtyFlag(boolean useDirtyFlag) {
        if(useDirtyFlag == false) {
            throw new IllegalArgumentException("DeltaManager only
supports useDirtyFlag = true (yet). Maybe use
SimpleTcpReplicationManager instead.");
        }
        this.useDirtyFlag = useDirtyFlag;
    }

------------------------------------------------------------

Alex.

-- 
Alexander Schwartz ([EMAIL PROTECTED])
http://www.ahus1.de


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to