diff --git a/src/Queue/Connection/Redis.php b/src/Queue/Connection/Redis.php index c91b521..8f1b9aa 100644 --- a/src/Queue/Connection/Redis.php +++ b/src/Queue/Connection/Redis.php @@ -183,7 +183,9 @@ protected function getRedis(): \Redis $this->redis = new \Redis(); $this->redis->connect($this->host, $this->port); - + if ($this->password) { + $this->redis->auth($this->password); + } return $this->redis; }