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 87259f8 commit 8e67446Copy full SHA for 8e67446
src/com/rabbitmq/client/impl/SocketFrameHandler.java
@@ -144,6 +144,7 @@ public void flush() throws IOException {
144
145
public void close() {
146
try { _socket.setSoLinger(true, SOCKET_CLOSING_TIMEOUT); } catch (Exception _) {}
147
- try { flush(); _socket.close(); } catch (Exception _) {}
+ try { flush(); } catch (Exception _) {}
148
+ try { _socket.close(); } catch (Exception _) {}
149
}
150
0 commit comments