Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

[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 retry command
  • Loading branch information
monteiro committed Sep 20, 2020
commit 5b662b5b4d9be90faa7f7ddf198e59247446686d
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ protected function execute(InputInterface $input, OutputInterface $output)

private function runInteractive(string $failureTransportName, ReceiverInterface $failedTransport, SymfonyStyle $io, bool $shouldForce)
{
$receiver = $this->getReceiver($failedTransport);
$receiver = $this->getReceiver($failureTransportName);
$count = 0;
if ($receiver instanceof ListableReceiverInterface) {
// for listable receivers, find the messages one-by-one
Expand All @@ -154,7 +154,7 @@ private function runInteractive(string $failureTransportName, ReceiverInterface
break;
}

$this->retrySpecificIds($failedTransport, $ids, $io, $shouldForce);
$this->retrySpecificIds($failureTransportName, $ids, $io, $shouldForce);
}
} else {
// get() and ask messages one-by-one
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.