Skip to content

Commit cf9e4eb

Browse files
committed
Increment JOB counter only after a success job handling'
1 parent 0f0ce58 commit cf9e4eb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/console/QueueController.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function actionTestErrorHandler()
7272

7373
private function ensureLimits()
7474
{
75-
if ($this->executedJobsCount++ > static::MAX_EXECUTED_JOBS && function_exists('posix_kill')) {
75+
if ($this->executedJobsCount > static::MAX_EXECUTED_JOBS && function_exists('posix_kill')) {
7676
return 15; // SIGTERM
7777
}
7878

@@ -91,6 +91,7 @@ private function attachEventHandlers()
9191
Event::on(Queue::class, Queue::EVENT_BEFORE_EXEC, function ($event) use ($out) {
9292
/** @var JobEvent $event */
9393
$out("%GNew job%n '" . get_class($event->job) . "'\n");
94+
$this->executedJobsCount++;
9495
$this->ensureLimits();
9596
});
9697

0 commit comments

Comments
 (0)