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 63d7a15 commit 4d8ba38Copy full SHA for 4d8ba38
src/com/rabbitmq/client/impl/ChannelN.java
@@ -357,9 +357,13 @@ private void asyncShutdown(Command command) throws IOException {
357
false,
358
command,
359
this);
360
- synchronized (_channelMutex) {
361
- processShutdownSignal(signal, true, true);
362
- quiescingTransmit(new Channel.CloseOk());
+ try {
+ synchronized (_channelMutex) {
+ processShutdownSignal(signal, true, false);
363
+ quiescingTransmit(new Channel.CloseOk());
364
+ }
365
+ } finally {
366
+ notifyOutstandingRpc(signal);
367
}
368
notifyListeners();
369
0 commit comments