Merge branch 'develop' into feature/1004-deadline-better-handling-of-pype

This commit is contained in:
Milan Kolar 2021-03-11 15:14:09 +01:00
commit 849c4cb682

View file

@ -130,7 +130,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)