Remove hard coded queue name for RunTaskJob (#420)

This commit is contained in:
Boy132 2024-06-19 16:04:00 +02:00 committed by GitHub
parent 7813b6060c
commit 7b0a15e746
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -24,7 +24,7 @@ class RunTaskJob extends Job implements ShouldQueue
*/ */
public function __construct(public Task $task, public bool $manualRun = false) public function __construct(public Task $task, public bool $manualRun = false)
{ {
$this->queue = 'standard';
} }
/** /**