qa/tasks/manypools: get rid of itervalues for py3 compat

Signed-off-by: Kyr Shatskyy <kyrylo.shatskyy@suse.com>
This commit is contained in:
Kyr Shatskyy 2020-02-15 11:07:22 +01:00 committed by Kefu Chai
parent 49592af400
commit 5f876961ef

View File

@ -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))