Skip to content

Commit

Permalink
[clustor] Uncomment tcp fields
Browse files Browse the repository at this point in the history
  • Loading branch information
hazendaz committed Nov 12, 2023
1 parent 1c579ca commit 3b17782
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ public Cluster getCluster(String serverName, String hostName, boolean loadMember
JmxTools.getLongAttr(mbeanServer, receiverOName, "nrOfMsgsReceived"));
cluster.setTotalReceivedBytes(
JmxTools.getLongAttr(mbeanServer, receiverOName, "totalReceivedBytes"));
// cluster.setTcpSelectorTimeout(
// JmxTools.getLongAttr(mbeanServer, receiverOName, "tcpSelectorTimeout"));
// cluster.setTcpThreadCount(
// JmxTools.getIntAttr(mbeanServer, receiverOName, "tcpThreadCount"));
cluster.setTcpSelectorTimeout(
JmxTools.getLongAttr(mbeanServer, receiverOName, "tcpSelectorTimeout"));
cluster.setTcpThreadCount(
JmxTools.getIntAttr(mbeanServer, receiverOName, "tcpThreadCount"));

cluster.setSenderAckTimeout(JmxTools.getLongAttr(mbeanServer, senderOName, "ackTimeout"));
cluster.setSenderAutoConnect((Boolean) mbeanServer.getAttribute(senderOName, "autoConnect"));
Expand Down

0 comments on commit 3b17782

Please sign in to comment.