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 0175511 commit 4e06df5Copy full SHA for 4e06df5
src/net/sharksystem/asap/protocol/ASAPPersistentConnection.java
@@ -425,6 +425,15 @@ public void run() {
425
this.asapPDU = protocol.readPDU(is);
426
} catch (IOException e) {
427
this.ioException = e;
428
+ System.out.println(ASAPPersistentConnection.this.getLogStart()
429
+ + "ioException when reading from stream, close stream");
430
+ try {
431
+ this.is.close();
432
+ } catch (IOException exception) {
433
434
+ + "closing a stream we could not read from: "
435
+ + exception.getLocalizedMessage());
436
+ }
437
} catch (ASAPException e) {
438
this.asapException = e;
439
}
0 commit comments