Skip to content

Commit

Permalink
merge bug20296 into v1_5
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Radestock committed Feb 18, 2009
2 parents a53866a + c9fed7f commit bc2aadc
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/com/rabbitmq/client/impl/ChannelN.java
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,12 @@ public void releaseChannelNumber() {
command,
this);
synchronized (_channelMutex) {
processShutdownSignal(signal, true, true);
quiescingTransmit(new Channel.CloseOk());
try {
processShutdownSignal(signal, true, false);
quiescingTransmit(new Channel.CloseOk());
} finally {
notifyOutstandingRpc(signal);
}
}
notifyListeners();
return true;
Expand Down

0 comments on commit bc2aadc

Please sign in to comment.