Skip to content

[Messenger] multiple failure transports support #34979

New issue

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

Closed
Prev Previous commit
Next Next commit
fix
  • Loading branch information
monteiro committed Sep 20, 2020
commit 87b31d39cd00527e79c3d61c03fcfca69a75567c
Original file line number Diff line number Diff line change
Expand Up @@ -170,20 +170,21 @@
service('messenger.routable_message_bus'),
service('event_dispatcher'),
service('logger'),
abstract_arg('Receivers')
])
->tag('console.command', ['command' => 'messenger:failed:retry'])

->set('console.command.messenger_failed_messages_show', FailedMessagesShowCommand::class)
->args([
abstract_arg('Receiver name'),
abstract_arg('Receiver'),
abstract_arg('Receivers'),
])
->tag('console.command', ['command' => 'messenger:failed:show'])

->set('console.command.messenger_failed_messages_remove', FailedMessagesRemoveCommand::class)
->args([
abstract_arg('Receiver name'),
abstract_arg('Receiver'),
abstract_arg('Receivers'),
])
->tag('console.command', ['command' => 'messenger:failed:remove'])

Expand Down