mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
fix: check for username separately form password
This commit is contained in:
parent
79caa3c26b
commit
5274ae1f0b
1 changed files with 3 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue