https://bz.apache.org/bugzilla/show_bug.cgi?id=61128

--- Comment #2 from Igal Sapir <d...@21solutions.net> ---
Chris,

https://github.com/apache/tomcat/pull/56/files should take care of #61127, but
where do you set "mapSendOptions"?

I see `public void setMapSendOptions(int mapSendOptions)` in 3 classes:

* BackupManager
* ClusterSingleSignOn  
* ReplicatedContext

The "fix" should be to add another method that takes a String input, as
follows:

    public void setMapSendOptions(String mapSendOptions) {

        int value = Channel.parseChannelSendOptions(mapSendOptions);
        if (value > 0)
            this.setMapSendOptions(value);
    }

But... Do all 3 of them use that?  TBH I'm not sure and I've never set up a
Cluster in Tomcat so I don't know if I should add those or not.  For example,
are those used in config elements like "Cluster" in server.xml?  I can't find
anything about that.

-- 
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