We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f0ce58 commit cf9e4ebCopy full SHA for cf9e4eb
src/console/QueueController.php
@@ -72,7 +72,7 @@ public function actionTestErrorHandler()
72
73
private function ensureLimits()
74
{
75
- if ($this->executedJobsCount++ > static::MAX_EXECUTED_JOBS && function_exists('posix_kill')) {
+ if ($this->executedJobsCount > static::MAX_EXECUTED_JOBS && function_exists('posix_kill')) {
76
return 15; // SIGTERM
77
}
78
@@ -91,6 +91,7 @@ private function attachEventHandlers()
91
Event::on(Queue::class, Queue::EVENT_BEFORE_EXEC, function ($event) use ($out) {
92
/** @var JobEvent $event */
93
$out("%GNew job%n '" . get_class($event->job) . "'\n");
94
+ $this->executedJobsCount++;
95
$this->ensureLimits();
96
});
97
0 commit comments