You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we are creating via GUI a new SCTP server if we leave "Extra Host Address" field empty sctpExtraHostAddress then extraHostAddresses will created with a single empty memebr, but must be empty.
To solve it we need to check in SctpManagementJmx.addSctpServer() method - check if the String extraHostAddresses value is null OR EMPTY and in both cases create an empty array.
We need to update both branches - master and netty-2 !!!
The text was updated successfully, but these errors were encountered:
Hi Sergey,
this function also need to change:
public Association addSctpAssociation(String hostAddress, int hostPort, String peerAddress, int peerPort, String assocName,
IpChannelType ipChannelType, String extraHostAddresses) throws Exception {
this.wrappedSctpManagement.addAssociation(hostAddress, hostPort, peerAddress, peerPort, assocName, ipChannelType,
extraHostAddresses != null ? extraHostAddresses.split(",") : null);
return null;
}
vetss
changed the title
But in GUI - sctpExtraHostAddress list for SCTP server is not set as empty after empty String
Bug in GUI - sctpExtraHostAddress list for SCTP server is not set as empty after empty String
Mar 13, 2016
vetss
pushed a commit
to vetss/jss7
that referenced
this issue
May 3, 2016
If we are creating via GUI a new SCTP server if we leave "Extra Host Address" field empty sctpExtraHostAddress then extraHostAddresses will created with a single empty memebr, but must be empty.
To solve it we need to check in SctpManagementJmx.addSctpServer() method - check if the String extraHostAddresses value is null OR EMPTY and in both cases create an empty array.
We need to update both branches - master and netty-2 !!!
The text was updated successfully, but these errors were encountered: