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 ac08a0b commit 8cbd636Copy full SHA for 8cbd636
test/src/com/rabbitmq/client/test/functional/Confirm.java
@@ -188,6 +188,22 @@ public void testSelect()
188
throws IOException
189
{
190
channel.confirmSelect();
191
+ try {
192
+ Channel ch = connection.createChannel();
193
+ ch.confirmSelect();
194
+ ch.txSelect();
195
+ fail();
196
+ } catch (IOException ioe) {
197
+ checkShutdownSignal(AMQP.PRECONDITION_FAILED, ioe);
198
+ }
199
200
201
202
203
204
205
206
207
}
208
209
public void testTx()
0 commit comments