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.
2 parents cfb7f76 + 5438021 commit 84694bfCopy full SHA for 84694bf
test/src/com/rabbitmq/client/test/functional/TransactionsBase.java
@@ -351,4 +351,24 @@ public void testRedeliverAckedUncommitted()
351
closeChannel();
352
}
353
354
+ public void testCommitWithDeletedQueue()
355
+ throws IOException
356
+ {
357
+ openChannel();
358
+ txSelect();
359
+ basicPublish();
360
+ releaseResources();
361
+ try {
362
+ txCommit();
363
+ } catch (IOException e) {
364
+ closeConnection();
365
+ openConnection();
366
367
+ fail("commit failed");
368
+ } finally {
369
+ createResources();
370
+ closeChannel();
371
+ }
372
373
+
374
0 commit comments