We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 581198f commit ca2e470Copy full SHA for ca2e470
1 file changed
avocado_i2n/cartgraph/node.py
@@ -895,6 +895,10 @@ def default_clean_decision(self, worker: TestWorker) -> bool:
895
return False
896
# if any worker is still running this test it cannot be reversed
897
test_statuses = [r["status"].lower() for r in picked_node.results]
898
+ if "client_noop" in picked_node.params["name"]:
899
+ logging.critical(picked_node)
900
+ logging.critical(worker)
901
+ logging.critical(self.is_finished(worker, -1))
902
if "unknown" in test_statuses:
903
logging.debug(
904
f"A worker {picked_worker.id} is still running node which cannot yet be reversed"
0 commit comments