From 9320a0c4f473cce293cf084f2acdd4d3ec514121 Mon Sep 17 00:00:00 2001 From: Andreas Geissler Date: Mon, 4 Mar 2024 14:54:13 +0100 Subject: [READINESS] Fix timeout message for failing app label check Fixed wrong string entry for app_name checks. Issue-ID: OOM-3278 Change-Id: Iaf3dd748cf5117699466342359dddcb35e49c107 Signed-off-by: Andreas Geissler --- ready.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ready.py b/ready.py index e80e6f0..e05c9e4 100755 --- a/ready.py +++ b/ready.py @@ -475,7 +475,7 @@ def main(argv): break if time.time() > timeout: log.warning("timed out waiting for '%s' to be ready", - pod_name) + app_name) sys.exit(1) else: # spread in time potentially parallel execution in multiple -- cgit 1.2.3-korg