Skip to content

Commit

Permalink
Merge branch '6.4' into 7.0
Browse files Browse the repository at this point in the history
* 6.4:
  Partially revert "DX: PHP CS Fixer - update excluded paths and apply some minor CS"
  [AssetMapper] Allowing for files to be written to some non-local location
  [HttpKernel] Resolve EBADP error on flock with LOCK_SH with NFS
  [AssetMapper] Fixing bug of bad parsing of imports when an import then export are adjacent
  add missing basque translations
  [FrameworkBundle][Validator] Allow implementing validation groups provider outside DTOs
  [Notifier][Novu] Implement overrides
  [Validator] Handle `null` case
  [Workflow] List place or transition listeners in profiler
  [Intl] Add support for emoji 15.1
  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
  [HttpKernel] Add parameters `kernel.runtime_mode` and `kernel.runtime_mode.*`, all set from env var `APP_RUNTIME_MODE`
  • Loading branch information
nicolas-grekas committed Oct 20, 2023
2 parents 48d69a9 + 9fb937c commit 12e9482
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 12e9482

Please sign in to comment.