diff --git a/azurelinuxagent/ga/agent_update_handler.py b/azurelinuxagent/ga/agent_update_handler.py index 6c93e092ca..a8390c1c7d 100644 --- a/azurelinuxagent/ga/agent_update_handler.py +++ b/azurelinuxagent/ga/agent_update_handler.py @@ -87,7 +87,6 @@ def __update_last_attempt_update_times(self): else: self.update_state.last_attempted_normal_update_time = now self.update_state.last_attempted_hotfix_update_time = now - self.update_state.last_attempted_manifest_download_time = now def __should_agent_attempt_manifest_download(self): """ @@ -103,6 +102,7 @@ def __should_agent_attempt_manifest_download(self): if next_attempt_time > now: return False + self.update_state.last_attempted_manifest_download_time = now return True @staticmethod