You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!$this->getAllowParallelRuns() && $jobList->hasReservedJob(get_class($this))) {
79
+
$logger->debug('Skipping ' . get_class($this) . ' job with ID ' . $this->getId() . ' because another job with the same class is already running', ['app' => 'cron']);
80
+
return;
81
+
}
74
82
75
83
try {
76
84
$jobStartTime = $this->time->getTime();
@@ -80,7 +88,7 @@ public function start(IJobList $jobList): void {
80
88
81
89
$logger->debug('Finished ' . get_class($this) . ' job with ID ' . $this->getId() . ' in ' . $timeTaken . ' seconds', ['app' => 'cron']);
0 commit comments