Skip to content

Commit

Permalink
Merge pull request #14143 from fe80/feat/redis-database
Browse files Browse the repository at this point in the history
feat(config): add REDIS_DATABASE support
  • Loading branch information
snipe authored Jan 18, 2024
2 parents adba2d5 + f52b17c commit 2a7be4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
'host' => env('REDIS_HOST', 'localhost'),
'password' => env('REDIS_PASSWORD', null),
'port' => env('REDIS_PORT', 6379),
'database' => 0,
'database' => env('REDIS_DATABASE', 0),
],

],
Expand Down

0 comments on commit 2a7be4d

Please sign in to comment.