diff --git a/src/Jobs/ProcessPendingUpdates.php b/src/Jobs/ProcessPendingUpdates.php index 3490c93db..f82244d8f 100644 --- a/src/Jobs/ProcessPendingUpdates.php +++ b/src/Jobs/ProcessPendingUpdates.php @@ -53,6 +53,10 @@ public function handle(EntriesRepository $repository) $repository->update($this->pendingUpdates)->whenNotEmpty( fn ($pendingUpdates) => static::dispatchIf( $this->attempt < 3, $pendingUpdates, $this->attempt + )->onConnection( + config('telescope.queue.connection') + )->onQueue( + config('telescope.queue.queue') )->delay(now()->addSeconds(10)), ); }