Update envHelper.py

fix install un web app‘s bug
This commit is contained in:
赵璟 2024-04-30 11:58:08 +08:00 committed by GitHub
parent e454e22bd6
commit be9dfe4921
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -35,7 +35,7 @@ class EnvHelper:
return value
return resolve_value(values.get(key, ''))
return resolve_value(values.get(key))
except Exception as e:
logger.error(f"Error getting {key} from {self.dotenv_path}: {e}")
raise CustomException()