There was an error while loading. Please reload this page.
1 parent 0c73c88 commit c3373bfCopy full SHA for c3373bf
1 file changed
test/integration-php/php-amqp/get-test.php
@@ -23,6 +23,9 @@
23
24
$queue = new AMQPQueue($channel);
25
$queue->setName("test-q");
26
+// Durable, because a transient non-exclusive queue is a deprecated feature
27
+// that RabbitMQ denies by default since 4.2 (transient_nonexcl_queues)
28
+$queue->setFlags(AMQP_DURABLE);
29
$queue->declareQueue();
30
$queue->bind($exchange_name,$queue->getName());
31
0 commit comments