Skip to content

Commit 0c876f6

Browse files
committed
fail-safe key explanation in config
Signed-off-by: bota <[email protected]>
1 parent a8870e4 commit 0c876f6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

config/autoload/local.php.dist

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,10 @@ return [
4646
'eof' => "\n",
4747
],
4848
],
49+
//delay time until the message is added back to the queue if an error occurs during processing
4950
'fail-safe' => [
50-
'first_retry' => 3600000,
51-
'second_retry' => 43200000,
52-
'third_retry' => 86400000,
51+
'first_retry' => 3600000, // 1h
52+
'second_retry' => 43200000, // 12h
53+
'third_retry' => 86400000, // 24h
5354
],
5455
];

0 commit comments

Comments
 (0)