Skip to content
This repository has been archived by the owner on Feb 7, 2024. It is now read-only.

Commit

Permalink
Fix wrong redis replication connection config path
Browse files Browse the repository at this point in the history
  • Loading branch information
kloining committed Nov 17, 2020
1 parent b9ec590 commit cafd21a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ChannelManagers/RedisChannelManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ public function onMessage(string $redisChannel, string $payload)
*/
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'];
Expand Down

0 comments on commit cafd21a

Please sign in to comment.