YanAlex
YanAlex
In some rare cases fresh started queue/listener not detecting jobs, until I press ENTER on a console. This happend on a VirtualBox Win 10. Weird behaviors.
I think there should be a hard limit on job execution, Ive checked **max_execution_time=120**. **Ok, ive got there are no time limit on console app.** **Isnt job should be terminated**...
> `max_execution_time` should not affect console. Queue should kill the job after it exceeds TTR, I'm not sure why this is not the case here. > > Also, if it...
> `max_execution_time` should not affect console. Queue should kill the job after it exceeds TTR, I'm not sure why this is not the case here. > > Also, if it...
> Do you have pcntl PHP extension enabled? > > It could be also some Windows quirk. Nope, found info about **Note: This extension is not available on Windows platforms.**...
you should, **clone()**, not _clone(true)_ Im struggling same issue
Is something better than? ``` namespace app\components\ar; class ExtendedAr extends \yii\db\ActiveRecord { public static function findAll($condition = null) { return $condition ? parent::findAll($condition) : parent::find()->all(); } } ```