mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-27 15:39:19 +00:00
Fix #75 Cast to int the phpredis-sentinel port
This commit is contained in:
parent
fbb747ea74
commit
ee7ce55e56
1 changed files with 1 additions and 1 deletions
|
|
@ -144,7 +144,7 @@ return [
|
|||
|
||||
// If a Redis Sentinel is used
|
||||
'sentinel_host' => env('REDIS_SENTINEL_HOST', '127.0.0.1'),
|
||||
'sentinel_port' => env('REDIS_SENTINEL_PORT', 26379),
|
||||
'sentinel_port' => (int)env('REDIS_SENTINEL_PORT', 26379),
|
||||
'sentinel_service' => env('REDIS_SENTINEL_SERVICE', 'mymaster'),
|
||||
'sentinel_timeout' => env('REDIS_SENTINEL_TIMEOUT', 0),
|
||||
'sentinel_persistent' => env('REDIS_SENTINEL_PERSISTENT'),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue