From e6281964b85ea4f5bd4cd32cc36b3d6635026d8c Mon Sep 17 00:00:00 2001 From: Kyr Shatskyy Date: Sat, 15 Feb 2020 11:07:22 +0100 Subject: [PATCH] qa/tasks/manypools: get rid of itervalues for py3 compat Signed-off-by: Kyr Shatskyy (cherry picked from commit 5f876961ef584ab07c8f9ef50f10f010a5e7510f) Conflicts: qa/tasks/manypools.py: trivial resolution --- qa/tasks/manypools.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/qa/tasks/manypools.py b/qa/tasks/manypools.py index 1f508a56fc202..7aec5df17382a 100644 --- a/qa/tasks/manypools.py +++ b/qa/tasks/manypools.py @@ -66,8 +66,8 @@ def task(ctx, config): wait = False ) log.info('waiting for pool and object creates') - poolprocs[remote] = proc - - run.wait(poolprocs.itervalues()) - + poolprocs[remote] = proc + + run.wait(poolprocs.values()) + log.info('created all {n} pools and wrote 16 objects to each'.format(n=poolnum)) -- 2.39.5