We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91c5c75 commit 0945490Copy full SHA for 0945490
src/Commands/BatchRetryCommand.php
@@ -79,10 +79,10 @@ public function handle()
79
protected function retry($failedJob)
80
{
81
if ($this->option('dry-run')) {
82
- $this->comment('[DRY RUN] Retrying job with ID ' . $failedJob->id);
+ $this->comment('[DRY RUN] Retrying job with ID ' . $failedJob->uuid ?? $failedJob->id);
83
return;
84
}
85
86
- $this->call('queue:retry', ['id' => $failedJob->id]);
+ $this->call('queue:retry', ['id' => $failedJob->uuid ?? $failedJob->id]);
87
88
0 commit comments