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
WebSocket connection closed unexpectedly by the server: [1006] WebSocket Read EOF
Leaving streaming connection open
I have found this code in project:
@OnWebSocketClose
public void onClose(int statusCode, String reason) {
if (statusCode != 1000) {
log.error("Disconnect " + statusCode + ": " + reason);
logMessage.append(" - WebSocket conection closed unexpectedly by the server: [").append(statusCode).append("] ").append(reason).append("\n");
error = statusCode;
} else {
logMessage.append(" - WebSocket conection has been successfully closed by the server").append("\n");
log.debug("Disconnect " + statusCode + ": " + reason);
}
//Notify connection opening and closing latches of the closed connection
openLatch.countDown();
closeLatch.countDown();
connected = false;
}
I have read about 1006 Close Code:
1006
1006 is a reserved value and MUST NOT be set as a status code in a
Close control frame by an endpoint. It is designated for use in
applications expecting a status code to indicate that the
connection was closed abnormally, e.g., without sending or
receiving a Close control frame.
I have set Close connection pattern as:
Is is okay but in multi-thread environment sometimes I get an error in Sampler result:
I have found this code in project:
I have read about 1006 Close Code:
https://tools.ietf.org/html/rfc6455#section-7.4.1
And I have no idea how to diagnose the underlying reason of this exception.
The text was updated successfully, but these errors were encountered: