From d1a909f9ab5b191a03526848cfc28b9b996f8102 Mon Sep 17 00:00:00 2001 From: "anthony.wen" Date: Mon, 30 Mar 2026 21:04:01 -0400 Subject: [PATCH] Add reboot both plugin caveat to ATVM notes --- atvm/watcher-service/atvm_run_watcher.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/atvm/watcher-service/atvm_run_watcher.py b/atvm/watcher-service/atvm_run_watcher.py index cdfbf06..99c16e2 100644 --- a/atvm/watcher-service/atvm_run_watcher.py +++ b/atvm/watcher-service/atvm_run_watcher.py @@ -1060,6 +1060,16 @@ def build_status_markdown( template_command = metadata.get("template_command") if isinstance(template_command, str) and template_command: notes = notes + [f"Template command: `{template_command}`"] + template_name = metadata.get("template") + integration_plugin = metadata.get("integration_plugin") + if ( + template_name == "cmc-reboot" + and isinstance(integration_plugin, str) + and integration_plugin.lower() == "pure/both" + ): + notes = notes + [ + "Both iscsi and fc disks were used for the reboot test. As a result, iscsi disks may not have attached before the mtdi started. So if the test failed, that is most likely the issue." + ] notes_block = "\n".join(f"- {note}" for note in notes) if notes else "- none" resolved_flow = extract_test_flow_from_generated_spec(reporter_root, log_text) or get_test_flow(metadata.get("template"))