You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 16, 2021. It is now read-only.
Similar to #289, I'd like to specify the timeout for a job on the job class (protected $timeout = 20; // timeout after 20 seconds). In Laravel 5.3, job timeout must be specified when launching the queue daemon. This means I have to set up different queues for different timeouts. I'd rather use different queues for job priority only. By specifying the timeout per job, I could specify a long timeout for jobs that are known to take a long time (perhaps sending an email via SMTP) while using a short timeout for other jobs such as accessing local resources where database queries should be fast.
The text was updated successfully, but these errors were encountered:
Similar to #289, I'd like to specify the timeout for a job on the job class (
protected $timeout = 20; // timeout after 20 seconds
). In Laravel 5.3, job timeout must be specified when launching the queue daemon. This means I have to set up different queues for different timeouts. I'd rather use different queues for job priority only. By specifying the timeout per job, I could specify a long timeout for jobs that are known to take a long time (perhaps sending an email via SMTP) while using a short timeout for other jobs such as accessing local resources where database queries should be fast.The text was updated successfully, but these errors were encountered: