Skip to content

Commit

Permalink
Merge branch '6.3' into 6.4
Browse files Browse the repository at this point in the history
* 6.3:
  [HttpKernel] Resolve EBADP error on flock with LOCK_SH with NFS
  add missing basque translations
  [Validator] Handle `null` case
  Replace Tickets by Issues
  [Validator] Add missing arabic translations
  [Validator] Added missing translations for Romanian language for Validator component
  [Messenger] Fix graceful exit with ids
  • Loading branch information
nicolas-grekas committed Oct 20, 2023
2 parents e7a1f07 + 6cd7045 commit 9fb937c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Command/FailedMessagesRetryCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,10 @@ protected function execute(InputInterface $input, OutputInterface $output): int
}

$this->retrySpecificIds($failureTransportName, $ids, $io, $shouldForce);
$io->success('All done!');

if (!$this->shouldStop) {
$io->success('All done!');
}

return 0;
}
Expand Down Expand Up @@ -255,6 +258,10 @@ private function retrySpecificIds(string $failureTransportName, array $ids, Symf

$singleReceiver = new SingleMessageReceiver($receiver, $envelope);
$this->runWorker($failureTransportName, $singleReceiver, $io, $shouldForce);

if ($this->shouldStop) {
break;
}
}
}

Expand Down

0 comments on commit 9fb937c

Please sign in to comment.