From cafd21a0da29c84faa4e208a4c52c54b74678b42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20L=C3=B8ining?= Date: Tue, 17 Nov 2020 13:32:44 +0100 Subject: [PATCH] Fix wrong redis replication connection config path --- src/ChannelManagers/RedisChannelManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ChannelManagers/RedisChannelManager.php b/src/ChannelManagers/RedisChannelManager.php index 5a52e65..c45ed2c 100644 --- a/src/ChannelManagers/RedisChannelManager.php +++ b/src/ChannelManagers/RedisChannelManager.php @@ -487,7 +487,7 @@ class RedisChannelManager extends LocalChannelManager */ protected function getConnectionUri() { - $name = config('websockets.replication.redis.connection', 'default'); + $name = config('websockets.replication.modes.redis.connection', 'default'); $config = config("database.redis.{$name}"); $host = $config['host'];