mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-30 16:30:15 +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:
@@ -97,7 +97,7 @@ return [
|
||||
*/
|
||||
|
||||
'waits' => [
|
||||
'redis:default' => 60,
|
||||
'redis:default' => 60 * 2, // 2 minutes
|
||||
],
|
||||
|
||||
/*
|
||||
@@ -112,9 +112,9 @@ return [
|
||||
*/
|
||||
|
||||
'trim' => [
|
||||
'recent' => 60,
|
||||
'pending' => 60,
|
||||
'completed' => 60,
|
||||
'recent' => 60 * 2, // 2 minutes
|
||||
'pending' => 60 * 2, // 2 minutes
|
||||
'completed' => 60 * 2, // 2 minutes
|
||||
'recent_failed' => 10080,
|
||||
'failed' => 10080,
|
||||
'monitored' => 10080,
|
||||
@@ -207,7 +207,7 @@ return [
|
||||
'maxJobs' => 0,
|
||||
'memory' => 128,
|
||||
'tries' => 1,
|
||||
'timeout' => 60,
|
||||
'timeout' => 60 * 2, // 2 minutes
|
||||
'nice' => 0,
|
||||
],
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user