https://issues.apache.org/bugzilla/show_bug.cgi?id=53606
--- Comment #2 from F.Arnoud <frederic.arn...@gmail.com> --- I used this solution: protected void sendPing() { TcpFailureDetector tcpFailureDetector = failureDetector!=null ? failureDetector.get() : null; if (tcpFailureDetector!=null) { //we have a reference to the failure detector //piggy back on that dude tcpFailureDetector.checkMembers(true); }else { StaticMembershipInterceptor staticMembershipInterceptor = staticOnly && staticMembers!=null ? staticMembers.get() : null; if (staticMembershipInterceptor!=null) { sendPingMessage(staticMembershipInterceptor.getMembers()); } else { sendPingMessage(getMembers()); } } } -- 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