1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-25 21:04:50 +02:00

Do not wait for the closing stream element on instant shutdown

This commit is contained in:
Florian Schmaus 2017-01-03 11:44:44 +01:00
parent 90a5e289f8
commit a8429d45f6

View file

@ -484,14 +484,16 @@ public class XMPPTCPConnection extends AbstractXMPPConnection {
} }
LOGGER.finer("PacketWriter has been shut down"); LOGGER.finer("PacketWriter has been shut down");
try { if (!instant) {
// After we send the closing stream element, check if there was already a try {
// closing stream element sent by the server or wait with a timeout for a // After we send the closing stream element, check if there was already a
// closing stream element to be received from the server. // closing stream element sent by the server or wait with a timeout for a
@SuppressWarnings("unused") // closing stream element to be received from the server.
Exception res = closingStreamReceived.checkIfSuccessOrWait(); @SuppressWarnings("unused")
} catch (InterruptedException | NoResponseException e) { Exception res = closingStreamReceived.checkIfSuccessOrWait();
LOGGER.log(Level.INFO, "Exception while waiting for closing stream element from the server " + this, e); } catch (InterruptedException | NoResponseException e) {
LOGGER.log(Level.INFO, "Exception while waiting for closing stream element from the server " + this, e);
}
} }
if (packetReader != null) { if (packetReader != null) {