[jboss-jira] [JBoss JIRA] Closed: (JGRP-352) Calling JChannelFactory.setExposeProtocols() always turns on exposing channels
Brian Stansberry (JIRA)
jira-events at jboss.com
Fri Nov 3 16:08:41 EST 2006
[ http://jira.jboss.com/jira/browse/JGRP-352?page=all ]
Brian Stansberry closed JGRP-352.
---------------------------------
Resolution: Done
> Calling JChannelFactory.setExposeProtocols() always turns on exposing channels
> ------------------------------------------------------------------------------
>
> Key: JGRP-352
> URL: http://jira.jboss.com/jira/browse/JGRP-352
> Project: JGroups
> Issue Type: Bug
> Affects Versions: 2.4
> Reporter: Brian Stansberry
> Assigned To: Brian Stansberry
> Priority: Minor
> Fix For: 2.5
>
>
> This
> public void setExposeProtocols(boolean expose_protocols) {
> this.expose_protocols=expose_protocols;
> this.expose_channels=true;
> }
> should be
> public void setExposeProtocols(boolean expose_protocols) {
> this.expose_protocols=expose_protocols;
> if (expose_protocols)
> this.expose_channels=true;
> }
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list