From b4ea8c07d2f4a2d30eb9529b1058ba01ce1759e5 Mon Sep 17 00:00:00 2001 From: Loic Dachary Date: Mon, 29 Jun 2015 16:36:54 +0200 Subject: [PATCH] include the machine type when waiting for machines Signed-off-by: Loic Dachary --- teuthology/task/internal.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/teuthology/task/internal.py b/teuthology/task/internal.py index 8c7de33c03..3adc6ad217 100644 --- a/teuthology/task/internal.py +++ b/teuthology/task/internal.py @@ -102,7 +102,8 @@ def lock_machines(ctx, config): if len(machines) < to_reserve + how_many and ctx.owner.startswith('scheduled'): if ctx.block: log.info( - 'waiting for more machines to be free (need %s + %s, have %s)...', + 'waiting for more %s machines to be free (need %s + %s, have %s)...', + machine_type, to_reserve, how_many, len(machines), -- 2.39.5