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 21c13ad commit 796ba5bCopy full SHA for 796ba5b
socha-sdk/src/server-api/sc/networking/clients/XStreamClient.java
@@ -117,6 +117,10 @@ public void receiveThread() {
117
}
118
119
} catch (IOException e) {
120
+ if(e.getCause() instanceof InterruptedException) {
121
+ // readObject method was interrupted
122
+ return;
123
+ }
124
// The other side closed the connection. It is better when the other
125
// side sends a CloseConnection message before, giving this side the
126
// chance to close the connection regularly.
0 commit comments