From 61dec6f36caec851fc8074b97395d897a9dd7d61 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Fri, 11 Oct 2013 15:03:40 -0500 Subject: [PATCH] Be more verbose when waiting for free machines Signed-off-by: Zack Cerza --- teuthology/task/internal.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/teuthology/task/internal.py b/teuthology/task/internal.py index 618487dfbdd7e..a9804fda9a257 100644 --- a/teuthology/task/internal.py +++ b/teuthology/task/internal.py @@ -74,7 +74,11 @@ def lock_machines(ctx, config): machine_type, machines)) if num_free < 6 and ctx.owner.startswith('scheduled'): if ctx.block: - log.info('waiting for more machines to be free...') + log.info( + 'waiting for more machines to be free (need %s see %s)...', + how_many, + num_free, + ) time.sleep(10) continue else: -- 2.39.5