Skip to content

Commit

Permalink
RouterStubManager: changed incorrect string format
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Jan 15, 2024
1 parent 9ac7202 commit 89e052c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/jgroups/stack/RouterStubManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ protected void checkTimeouts() {
if(timeout > heartbeat_timeout) {
log.debug("%s: closed connection to GossipRouter %s as no heartbeat has been received for %s",
local_addr, st.remote(),
Util.printTime(timeout, TimeUnit.MILLISECONDS), st);
Util.printTime(timeout, TimeUnit.MILLISECONDS));
st.destroy();
}
});
Expand Down

0 comments on commit 89e052c

Please sign in to comment.