Skip to content

Commit ca2e470

Browse files
committed
debug further issues with removable states (leftover ones?)
1 parent 581198f commit ca2e470

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

avocado_i2n/cartgraph/node.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -895,6 +895,10 @@ def default_clean_decision(self, worker: TestWorker) -> bool:
895895
return False
896896
# if any worker is still running this test it cannot be reversed
897897
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))
898902
if "unknown" in test_statuses:
899903
logging.debug(
900904
f"A worker {picked_worker.id} is still running node which cannot yet be reversed"

0 commit comments

Comments
 (0)