From 0e42cac589a52a55562d7941c3333b31ca5bcd98 Mon Sep 17 00:00:00 2001 From: Alexey Masterov Date: Thu, 17 Jul 2025 12:48:08 +0200 Subject: [PATCH] Add debug --- test_runner/fixtures/neon_api.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test_runner/fixtures/neon_api.py b/test_runner/fixtures/neon_api.py index 9ea3247234..44358a41e1 100644 --- a/test_runner/fixtures/neon_api.py +++ b/test_runner/fixtures/neon_api.py @@ -471,6 +471,8 @@ class NeonAPI: operations = self.get_operations(project_id)["operations"] for op in operations: if op["status"] in {"scheduling", "running", "cancelling"}: + # XXX debug only, do not merge + log.info("Waiting for operation: %s", op) has_running = True time.sleep(0.5)