Skip to content

Commit bc2aadc

Browse files
author
Matthias Radestock
committed
merge bug20296 into v1_5
2 parents a53866a + c9fed7f commit bc2aadc

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

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

+6-2
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,12 @@ public void releaseChannelNumber() {
193193
command,
194194
this);
195195
synchronized (_channelMutex) {
196-
processShutdownSignal(signal, true, true);
197-
quiescingTransmit(new Channel.CloseOk());
196+
try {
197+
processShutdownSignal(signal, true, false);
198+
quiescingTransmit(new Channel.CloseOk());
199+
} finally {
200+
notifyOutstandingRpc(signal);
201+
}
198202
}
199203
notifyListeners();
200204
return true;

0 commit comments

Comments
 (0)