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 857bd18 commit 3772830Copy full SHA for 3772830
docs/configuration/microservices.md
@@ -54,9 +54,9 @@ Below is a guide on configuring a shared MySQL database and Redis connection:
54
'connections' => [
55
'shared' => [
56
'driver' => 'redis',
57
- 'connection' => 'shared',
+ 'connection' => env('SHARED_REDIS_QUEUE_CONNECTION', 'default'),
58
'queue' => env('SHARED_REDIS_QUEUE', 'default'),
59
- 'retry_after' => 90,
+ 'retry_after' => (int) env('SHARED_REDIS_QUEUE_RETRY_AFTER', 90),
60
'block_for' => null,
61
'after_commit' => false,
62
],
0 commit comments