Skip to content

Commit dbec994

Browse files
committed
run task manager tasks at lowest priority
1 parent f80e481 commit dbec994

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Console/Commands/RunTasks.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public function handle()
7474

7575
foreach ($tasks as &$task) {
7676
$bar->advance();
77-
$this->dispatch((new SendScheduledTask(Models\Server::findOrFail($task->server), $task))->onQueue('low'));
77+
$this->dispatch((new SendScheduledTask(Models\Server::findOrFail($task->server), $task))->onQueue(env('QUEUE_LOW', 'low')));
7878
}
7979

8080
$bar->finish();

0 commit comments

Comments
 (0)