We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I try subscribe to channel with:
yield $channel->consume('onMessage', 'queue', 'tag'); yield $channel->consume('onMessage', 'queue', 'tag');
For first request it working, but for the second it remains pending for a long time.
In rabbitmq I see:
operation basic.consume caused a connection exception not_allowed: "attempt to reuse consumer tag 'tag'"
This also applies to the queueDeclare method with different parameters. I think need to throw an exception when the server raises an error.
The text was updated successfully, but these errors were encountered:
Associated with 26 In the future I will subscribe to frames reporting an error
Sorry, something went wrong.
yield self::$channel->queueDeclare('test', true);
Passive mode not working. The code stops after the request. In rabbit log I see:
[error] <0.693.0> operation queue.declare caused a channel exception not_found: no queue 'test' in vhost '/'
No branches or pull requests
I try subscribe to channel with:
For first request it working, but for the second it remains pending for a long time.
In rabbitmq I see:
This also applies to the queueDeclare method with different parameters.
I think need to throw an exception when the server raises an error.
The text was updated successfully, but these errors were encountered: