Keep ATVM watcher notes operator-focused

This commit is contained in:
2026-03-27 14:54:39 -04:00
parent 4186f2d0ea
commit 650adb085e
4 changed files with 11 additions and 3 deletions

View File

@@ -1208,9 +1208,6 @@ def determine_state(
terminal_subruns = [subrun for subrun in subrun_states if subrun["state"] in {"COMPLETED", "FAILED"}]
if terminal_subruns:
state = "FAILED" if any(result.failures for result in parent_host_results.values()) else "COMPLETED"
notes.append("Run finished and one or more sub-run result artifacts were detected.")
if end_ts:
notes.append("Final reporting artifacts were detected.")
return state, subrun_states, parent_host_results, start_ts, end_ts, currents_url, notes
if process_gone_since and (now_utc() - process_gone_since).total_seconds() >= process_exit_grace_seconds: