autoconf - fix wrong variable name for environment

This commit is contained in:
bunkerity 2022-06-27 10:27:40 +02:00
parent 5cb61380d7
commit 7bba81b16b
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ class SwarmController(Controller, ConfigCaller) :
variable = env.split("=")[0]
value = env.replace(variable + "=", "", 1)
if self._is_setting(variable) :
instance["env"][variable] = value
instance_env[variable] = value
for task in controller_instance.tasks() :
instance = {}
instance["name"] = task["ID"]