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
No known key found for this signature in database

View file

@ -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;
}
}