From 58e270b9c54de42440f2557ba8e13479acb7ade3 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Wed, 31 Jan 2024 10:51:41 -0700 Subject: [PATCH] nuke debug --- teuthology/lock/query.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/teuthology/lock/query.py b/teuthology/lock/query.py index 9fd09d9abe..ef2292610c 100644 --- a/teuthology/lock/query.py +++ b/teuthology/lock/query.py @@ -138,9 +138,11 @@ def find_stale_locks(owner=None): if resp.ok: break if not resp.ok: + log.debug(f"{node['name'].split('.')[0]} {description} {resp.status_code}") return False job_info = resp.json() if job_info['status'] in ('running', 'waiting'): + log.debug(f"{node['name'].split('.')[0]} {description} {job_info['status']}") cache.add(description) return True return False -- 2.39.5