chore(horizon): make max time configurable (#8560)

This commit is contained in:
Andras Bacsai 2026-02-23 13:25:13 +01:00 committed by GitHub
commit f68d60a373
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -184,13 +184,13 @@
'connection' => 'redis',
'balance' => env('HORIZON_BALANCE', 'false'),
'queue' => env('HORIZON_QUEUES', 'high,default'),
'maxTime' => 3600,
'maxTime' => env('HORIZON_MAX_TIME', 0),
'maxJobs' => 400,
'memory' => 128,
'tries' => 1,
'nice' => 0,
'sleep' => 3,
'timeout' => 3600,
'timeout' => env('HORIZON_TIMEOUT', 36000),
],
],