From 2a9f16b95dbe9280a5cbd8c7347c5e6f9bb130c2 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Thu, 11 Mar 2021 12:23:25 +0100 Subject: [PATCH] parse environment values from settings before merge --- start.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/start.py b/start.py index b5e0fee847..35de16a2a2 100644 --- a/start.py +++ b/start.py @@ -129,7 +129,10 @@ def set_pype_global_environments() -> None: # TODO Global environments will be stored in "general" settings so loading # will be modified and can be done in igniter. - env = acre.merge(all_env["global"], dict(os.environ)) + env = acre.merge( + acre.parse(all_env["global"]), + dict(os.environ) + ) os.environ.clear() os.environ.update(env)