From 035bf2bb36d00181e090ee182dfb3f02e38e1786 Mon Sep 17 00:00:00 2001 From: Yoon Hong Date: Wed, 26 Oct 2016 13:01:05 -0700 Subject: [PATCH] Fix incorrect host_plugin_protocol class var update in wire.py (#452) --- azurelinuxagent/common/protocol/wire.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azurelinuxagent/common/protocol/wire.py b/azurelinuxagent/common/protocol/wire.py index 5fa1794..a9c2e02 100644 --- a/azurelinuxagent/common/protocol/wire.py +++ b/azurelinuxagent/common/protocol/wire.py @@ -707,7 +707,8 @@ class WireClient(object): self.update_certs(goal_state) self.update_ext_conf(goal_state) if self.host_plugin is not None: - self.host_plugin.goal_state = goal_state + self.host_plugin.container_id = goal_state.container_id + self.host_plugin.role_config_name = goal_state.role_instance_config_name return except WireProtocolResourceGone: logger.info("Incarnation is out of date. Update goalstate.")