Fix wrong redis replication connection config path

This commit is contained in:
Kristian Løining 2020-11-17 13:32:44 +01:00
parent b9ec590a4f
commit cafd21a0da
1 changed files with 1 additions and 1 deletions

View File

@ -487,7 +487,7 @@ class RedisChannelManager extends LocalChannelManager
*/ */
protected function getConnectionUri() protected function getConnectionUri()
{ {
$name = config('websockets.replication.redis.connection', 'default'); $name = config('websockets.replication.modes.redis.connection', 'default');
$config = config("database.redis.{$name}"); $config = config("database.redis.{$name}");
$host = $config['host']; $host = $config['host'];