Skip to content

Commit

Permalink
Do not mark VmSettingsSummary as a failure (#2605)
Browse files Browse the repository at this point in the history
* Do not mark VmSettingsSummary as a failure

* Do not mark VmSettingsSummary as a failure

Co-authored-by: narrieta <narrieta>
  • Loading branch information
narrieta authored Jun 6, 2022
1 parent a926e54 commit 1884ec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azurelinuxagent/common/protocol/hostplugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ def report_summary(self):
"failedRequests": self._request_failure_count
}
message = json.dumps(summary)
add_event(op=WALAEventOperation.VmSettingsSummary, message=message, is_success=False, log_event=False)
add_event(op=WALAEventOperation.VmSettingsSummary, message=message, is_success=True, log_event=False)
if self._error_count > 0:
logger.info("[VmSettingsSummary] {0}", message)

Expand Down

0 comments on commit 1884ec5

Please sign in to comment.