We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8870e4 commit 0c876f6Copy full SHA for 0c876f6
config/autoload/local.php.dist
@@ -46,9 +46,10 @@ return [
46
'eof' => "\n",
47
],
48
49
+ //delay time until the message is added back to the queue if an error occurs during processing
50
'fail-safe' => [
- 'first_retry' => 3600000,
51
- 'second_retry' => 43200000,
52
- 'third_retry' => 86400000,
+ 'first_retry' => 3600000, // 1h
+ 'second_retry' => 43200000, // 12h
53
+ 'third_retry' => 86400000, // 24h
54
55
];
0 commit comments