From: Kefu Chai Date: Fri, 3 Apr 2020 11:28:10 +0000 (+0800) Subject: task/background_exec.py: s/itervalues/values/ X-Git-Tag: 1.1.0~133^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F1437%2Fhead;p=teuthology.git task/background_exec.py: s/itervalues/values/ to by python3 compatible Signed-off-by: Kefu Chai --- diff --git a/teuthology/task/background_exec.py b/teuthology/task/background_exec.py index cf187e9f5..897b52531 100644 --- a/teuthology/task/background_exec.py +++ b/teuthology/task/background_exec.py @@ -73,4 +73,4 @@ def task(ctx, config): for name, task in tasks.items(): log.info('Stopping background command on %s', name) task.stdin.close() - run.wait(tasks.itervalues()) + run.wait(tasks.values())