From 7bba81b16bdcc0e2f6a075e709f37c7a59c626fa Mon Sep 17 00:00:00 2001 From: bunkerity Date: Mon, 27 Jun 2022 10:27:40 +0200 Subject: [PATCH] autoconf - fix wrong variable name for environment --- autoconf/SwarmController.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoconf/SwarmController.py b/autoconf/SwarmController.py index 3a4f53e0e..0135ebce5 100644 --- a/autoconf/SwarmController.py +++ b/autoconf/SwarmController.py @@ -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"]