From 5f876961ef584ab07c8f9ef50f10f010a5e7510f 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 --- qa/tasks/manypools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/manypools.py b/qa/tasks/manypools.py index 233c936bf2a..7fe7e43e1b8 100644 --- a/qa/tasks/manypools.py +++ b/qa/tasks/manypools.py @@ -68,6 +68,6 @@ def task(ctx, config): log.info('waiting for pool and object creates') poolprocs[remote] = proc - run.wait(poolprocs.itervalues()) + run.wait(poolprocs.values()) log.info('created all {n} pools and wrote 16 objects to each'.format(n=poolnum)) -- 2.39.5