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 5e3f0f7 commit 0dc0a6fCopy full SHA for 0dc0a6f
src/com/rabbitmq/client/impl/SocketFrameHandler.java
@@ -140,11 +140,7 @@ public void writeFrame(Frame frame) throws IOException {
140
}
141
142
public void close() {
143
- try {
144
- _socket.setSoLinger(true, SOCKET_CLOSING_TIMEOUT);
145
- _socket.close();
146
- } catch (IOException ioe) {
147
- // Ignore.
148
- }
+ try { _socket.setSoLinger(true, SOCKET_CLOSING_TIMEOUT); } catch (Exception _) {}
+ try { _socket.close(); } catch (Exception _) {}
149
150
0 commit comments