Only start the job if active

This commit is contained in:
2025-02-22 08:34:47 +01:00
parent e44ea5a3b2
commit 9f7603ea18

View File

@ -2,6 +2,7 @@
namespace App\Browser; namespace App\Browser;
use App\Models\Job;
use App\Models\JobArtifact; use App\Models\JobArtifact;
use App\Models\JobRun; use App\Models\JobRun;
use Closure; use Closure;
@ -27,12 +28,14 @@ abstract class BrowserJob implements ShouldQueue
use SupportsChrome, ProvidesBrowser, Dispatchable, InteractsWithQueue, Queueable, SerializesModels; use SupportsChrome, ProvidesBrowser, Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
public int $jobId; public int $jobId;
public Job $job;
public $timeout = 500; public $timeout = 500;
public function __construct(int $jobId) public function __construct(int $jobId)
{ {
$this->jobId = $jobId; $this->jobId = $jobId;
$this->job = Job::find($jobId);
} }
/** /**
@ -216,7 +219,9 @@ abstract class BrowserJob implements ShouldQueue
*/ */
public function handle(): void public function handle(): void
{ {
$this->execute(); if ($this->job->is_active) {
$this->execute();
}
} }
public function reschedule($minutes) { public function reschedule($minutes) {