From 6024e1edc5d3e092728a404487cb0f4ab125f072 Mon Sep 17 00:00:00 2001 From: narrieta Date: Mon, 7 Mar 2022 12:35:35 -0800 Subject: [PATCH] Rename variable --- .../common/protocol/extensions_goal_state_from_vm_settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azurelinuxagent/common/protocol/extensions_goal_state_from_vm_settings.py b/azurelinuxagent/common/protocol/extensions_goal_state_from_vm_settings.py index 21b397f800..f0997e8194 100644 --- a/azurelinuxagent/common/protocol/extensions_goal_state_from_vm_settings.py +++ b/azurelinuxagent/common/protocol/extensions_goal_state_from_vm_settings.py @@ -37,7 +37,7 @@ def __init__(self, etag, json_text, correlation_id): self._id = "etag_{0}".format(etag) self._etag = etag self._svd_sequence_number = 0 - self._fetch_correlation_id = correlation_id + self._hostga_plugin_correlation_id = correlation_id self._text = json_text self._host_ga_plugin_version = FlexibleVersion('0.0.0.0') self._schema_version = FlexibleVersion('0.0.0.0') @@ -97,7 +97,7 @@ def hostga_plugin_correlation_id(self): """ The correlation id for the call to the HostGAPlugin vmSettings API """ - return self._fetch_correlation_id + return self._hostga_plugin_correlation_id @property def created_on_timestamp(self):