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 @@ private function generate_environment_variables()
|
|||
|
||||
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