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
On exception thrown from one of the consumers, the Context, which is sent to all extensions is not populated with a message, queue, consumer, etc.
$context = new Context($this->psrContext); $context->setLogger($logger); $context->setPsrQueue($consumer->getQueue()); $context->setPsrConsumer($consumer); $context->setPsrProcessor($currentProcessor); $context->setPsrMessage($message);
This is code is in the callback, but when the callback exit, the context sent to $extension->onInterrupted() is empty. QueueConsumer.php (line: 240+)
The text was updated successfully, but these errors were encountered:
the message is not set if this condition is true.
it is definitely a bug
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
On exception thrown from one of the consumers, the Context, which is sent to all extensions is not populated with a message, queue, consumer, etc.
This is code is in the callback, but when the callback exit, the context sent to $extension->onInterrupted() is empty. QueueConsumer.php (line: 240+)
The text was updated successfully, but these errors were encountered: