I'm running Laravel queue with that command :
/usr/bin/php7.2 artisan queue:listen --timeout=0
But the process keeps stopping at 300 seconds with that error :
Symfony\\Component\\Process\\Exception\\ProcessTimedOutException(code: 0): The process [...] exceeded the timeout of 300 seconds
I've also tried to set timeout in job's class :
public $timeout = 5000;
Anyone know what to do? This process is for video encoding so a bit long running.
Thx!