Skip to content

Commit 3772830

Browse files
authored
Update microservices.md
1 parent 857bd18 commit 3772830

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/configuration/microservices.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ Below is a guide on configuring a shared MySQL database and Redis connection:
5454
'connections' => [
5555
'shared' => [
5656
'driver' => 'redis',
57-
'connection' => 'shared',
57+
'connection' => env('SHARED_REDIS_QUEUE_CONNECTION', 'default'),
5858
'queue' => env('SHARED_REDIS_QUEUE', 'default'),
59-
'retry_after' => 90,
59+
'retry_after' => (int) env('SHARED_REDIS_QUEUE_RETRY_AFTER', 90),
6060
'block_for' => null,
6161
'after_commit' => false,
6262
],

0 commit comments

Comments
 (0)