2 Commits

Author SHA1 Message Date
540c41357e cron with daemon
Some checks failed
Push image to registry / build-image (push) Failing after 1m0s
2025-02-22 08:35:03 +01:00
9f7603ea18 Only start the job if active 2025-02-22 08:34:47 +01:00
2 changed files with 9 additions and 1 deletions

View File

@ -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) {

View File

@ -6,6 +6,9 @@ php ./artisan migrate --force
# Cache
php ./artisan optimize:clear && php ./artisan optimize
# Scheduler
crond -b -L /dev/stdout
# Queue worker
supervisord --nodaemon --configuration /etc/supervisord.conf &
supervisorctl start "laravel-worker:*"