We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 543e73b commit 196f448Copy full SHA for 196f448
src/SignalR/clients/java/signalr/src/main/java/com/microsoft/signalr/HubConnection.java
@@ -518,6 +518,11 @@ private void stopConnection(String errorMessage) {
518
connectionState = null;
519
}
520
521
+ if (pingTimer != null) {
522
+ pingTimer.cancel();
523
+ pingTimer = null;
524
+ }
525
+
526
logger.info("HubConnection stopped.");
527
hubConnectionState = HubConnectionState.DISCONNECTED;
528
handshakeResponseSubject.onComplete();
0 commit comments