Fix: Update stack.template on PATCH / PUT call
diff --git a/src/emuvim/api/openstack/openstack_dummies/heat_dummy_api.py b/src/emuvim/api/openstack/openstack_dummies/heat_dummy_api.py
index 107d8fd..8262adb 100755
--- a/src/emuvim/api/openstack/openstack_dummies/heat_dummy_api.py
+++ b/src/emuvim/api/openstack/openstack_dummies/heat_dummy_api.py
@@ -259,7 +259,8 @@
stack = tmp_stack
if stack is None:
return 'Could not resolve Stack - ID', 404
-
+ #LOG.debug("STACK: {}".format(stack))
+ #LOG.debug("TEMPLATE: {}".format(stack.template))
return Response(json.dumps(stack.template), status=200, mimetype="application/json")
except Exception as ex:
@@ -350,6 +351,7 @@
stack_dict['template'] = json.loads(stack_dict['template'])
if not reader.parse_input(stack_dict['template'], stack, self.api.compute.dc.label, stack_update=True):
return 'Could not create stack.', 400
+ stack.template = stack_dict['template']
if not self.api.compute.update_stack(old_stack.id, stack):
return 'Could not update stack.', 400