Skip to content

Commit 6903f4e

Browse files
author
Alexandru Scvortov
committed
no comment
1 parent 3017c59 commit 6903f4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/com/rabbitmq/client/impl/AMQConnection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ public boolean processControlCommand(Command c)
530530
Method method = c.getMethod();
531531

532532
if (method instanceof AMQP.Connection.Close) {
533-
if (!isOpen()) {
533+
if (isOpen()) {
534534
handleConnectionClose(c);
535535
} else {
536536
// Already shutting down, so just send back a CloseOk.

0 commit comments

Comments
 (0)