You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fatal error: Uncaught PhpAmqpLib\Exception\AMQPProtocolChannelException: NOT_FOUND - no queue 'myqueue' in vhost '/' in /var/www/html/vendor/php-amqplib/php-amqplib/PhpAmqpLib/Channel/AMQPChannel.php on line 188
( ! ) PhpAmqpLib\Exception\AMQPProtocolChannelException: NOT_FOUND - no queue 'myqueue' in vhost '/' in /var/www/html/vendor/php-amqplib/php-amqplib/PhpAmqpLib/Channel/AMQPChannel.php on line 188
When I set durable to FALSE then queue is created.
I can also send messages to durable queue created from web interface.
Any idea why I cannot create a durable queue?
The text was updated successfully, but these errors were encountered:
Hello @BlackZork ,
looks like You came from python world where You can specify function arguments in any order. But this is not true in PHP world. Also, You don't need to do something like $queue=$queue_name, just pass variables in correct order and everything will be ok.
Hi,
I am using rabbitmq:3.7-management docker image and php-amaqplib 2.8.0.
I am unable to create durable queue. Code:
This returns errors:
When I set durable to FALSE then queue is created.
I can also send messages to durable queue created from web interface.
Any idea why I cannot create a durable queue?
The text was updated successfully, but these errors were encountered: