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 7729d85 commit 97e978aCopy full SHA for 97e978a
test/src/com/rabbitmq/client/test/functional/Routing.java
@@ -17,6 +17,7 @@
17
18
package com.rabbitmq.client.test.functional;
19
20
+import com.rabbitmq.client.AlreadyClosedException;
21
import com.rabbitmq.client.test.BrokerTestCase;
22
import com.rabbitmq.client.AMQP;
23
import com.rabbitmq.client.GetResponse;
@@ -252,6 +253,8 @@ public void testBasicReturn() throws IOException {
252
253
fail("basic.publish{immediate=true} should not be supported");
254
} catch (IOException ioe) {
255
checkShutdownSignal(AMQP.NOT_IMPLEMENTED, ioe);
256
+ } catch (AlreadyClosedException ioe) {
257
+ checkShutdownSignal(AMQP.NOT_IMPLEMENTED, ioe);
258
}
259
260
0 commit comments