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 85d65b0 + 2cd524b commit 6681c07Copy full SHA for 6681c07
test/src/com/rabbitmq/client/test/functional/TransactionsBase.java
@@ -33,6 +33,7 @@
33
34
import java.io.IOException;
35
36
+import com.rabbitmq.client.AlreadyClosedException;
37
import com.rabbitmq.client.GetResponse;
38
import com.rabbitmq.client.AMQP.BasicProperties;
39
@@ -256,7 +257,9 @@ public void testUnknownTagAck()
256
257
try {
258
txCommit();
259
fail("expected exception");
- } catch (IOException e) {}
260
+ }
261
+ catch (IOException e) {}
262
+ catch (AlreadyClosedException e) {}
263
connection = null;
264
openConnection();
265
}
0 commit comments