fix: check for username separately form password

This commit is contained in:
peaklabs-dev
2024-10-15 17:23:33 +02:00
parent 79caa3c26b
commit 5274ae1f0b

View File

@@ -167,7 +167,9 @@ class StartRedis
if ($env->key === 'REDIS_PASSWORD') {
$redis_password = $env->real_value;
} elseif ($env->key === 'REDIS_USERNAME') {
}
if ($env->key === 'REDIS_USERNAME') {
$redis_username = $env->real_value;
}
}