We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 843800f commit 88b96a6Copy full SHA for 88b96a6
composer.json
@@ -53,7 +53,7 @@
53
"hiqdev/yii2-hiart-guzzle": "<2.0 || dev-master",
54
"hiqdev/yii2-hiart-librariesio": "<2.0 || dev-master",
55
"guzzlehttp/guzzle": "^6.0",
56
- "yiisoft/yii2-queue": "^2.0"
+ "yiisoft/yii2-queue": "^2.0.2"
57
},
58
"require-dev": {
59
"yiisoft/yii2-debug": "^2.0",
src/console/QueueController.php
@@ -57,7 +57,7 @@ public function init()
*/
public function actionRun()
{
60
- $this->queue->run();
+ $this->queue->run(true);
61
}
62
63
/**
@@ -69,7 +69,6 @@ public function actionTestErrorHandler()
69
sleep(1);
70
71
72
-
73
private function ensureLimits()
74
75
if (++$this->executedJobsCount >= static::MAX_EXECUTED_JOBS && function_exists('posix_kill')) {
0 commit comments