strip whitespaces when loading secrets (#12393)

* strip whitespaces when loading secrets

* formatting
This commit is contained in:
Josh Thorpe
2024-07-12 21:36:15 +08:00
committed by GitHub
parent e416e44998
commit 8f51f7b4c4
4 changed files with 12 additions and 8 deletions

View File

@@ -89,7 +89,9 @@ def get_jwt_secret() -> str:
# check docker secrets
elif os.path.isfile(os.path.join("/run/secrets", JWT_SECRET_ENV_VAR)):
logger.debug(f"Using jwt secret from {JWT_SECRET_ENV_VAR} docker secret file.")
jwt_secret = Path(os.path.join("/run/secrets", JWT_SECRET_ENV_VAR)).read_text()
jwt_secret = (
Path(os.path.join("/run/secrets", JWT_SECRET_ENV_VAR)).read_text().strip()
)
# check for the addon options file
elif os.path.isfile("/data/options.json"):
with open("/data/options.json") as f: