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 81928c9 commit bfb2172Copy full SHA for bfb2172
src/com/rabbitmq/client/QueueingConsumer.java
@@ -134,7 +134,7 @@ private void checkShutdown(){
134
private Delivery handle(Delivery delivery)
135
{
136
if(delivery == POISON || (delivery == null && _shutdown != null)){
137
- _queue.add(POISON);
+ if(delivery == POISON) _queue.add(POISON);
138
throw Utility.fixStackTrace(_shutdown);
139
}
140
return delivery;
0 commit comments