update envhelper.py for install un web app's bug

This commit is contained in:
zhaojing1987 2024-04-30 11:56:14 +08:00
parent 479f50f96d
commit 4acb322615
2 changed files with 3 additions and 1 deletions
apphub/src

View file

@ -27,3 +27,5 @@ port = 9000
[initial_apps]
keys =
[favorite_apps]
keys =

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()