Only start the job if active
This commit is contained in:
@ -2,6 +2,7 @@
|
||||
|
||||
namespace App\Browser;
|
||||
|
||||
use App\Models\Job;
|
||||
use App\Models\JobArtifact;
|
||||
use App\Models\JobRun;
|
||||
use Closure;
|
||||
@ -27,12 +28,14 @@ abstract class BrowserJob implements ShouldQueue
|
||||
use SupportsChrome, ProvidesBrowser, Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
||||
|
||||
public int $jobId;
|
||||
public Job $job;
|
||||
|
||||
public $timeout = 500;
|
||||
|
||||
public function __construct(int $jobId)
|
||||
{
|
||||
$this->jobId = $jobId;
|
||||
$this->job = Job::find($jobId);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -216,7 +219,9 @@ abstract class BrowserJob implements ShouldQueue
|
||||
*/
|
||||
public function handle(): void
|
||||
{
|
||||
$this->execute();
|
||||
if ($this->job->is_active) {
|
||||
$this->execute();
|
||||
}
|
||||
}
|
||||
|
||||
public function reschedule($minutes) {
|
||||
|
Reference in New Issue
Block a user