mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-14 12:06:46 +00:00
⏱️ Update queue and Horizon configurations to use 2-minute intervals
- Adjusted `retry_after` in `queue.php` to `60 * 2`. - Updated various time-based settings in `horizon.php` (e.g., `waits`, `trim`, `timeout`) to use 2-minute intervals for consistency.
This commit is contained in:
@@ -67,7 +67,7 @@ return [
|
||||
'driver' => 'redis',
|
||||
'connection' => env('REDIS_QUEUE_CONNECTION', 'default'),
|
||||
'queue' => env('REDIS_QUEUE', 'default'),
|
||||
'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 90),
|
||||
'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 60 * 2),
|
||||
'block_for' => null,
|
||||
'after_commit' => false,
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user