From: Kyr Shatskyy Date: Sat, 15 Feb 2020 10:14:31 +0000 (+0100) Subject: qa/tasks/watch_notify_stress: get rid of itervalues for py3 X-Git-Tag: v15.1.1~129^2~17 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=6e328edcbcab28b6d6a3abbb46b48a6a18e660c2;p=ceph-ci.git qa/tasks/watch_notify_stress: get rid of itervalues for py3 Signed-off-by: Kyr Shatskyy --- diff --git a/qa/tasks/watch_notify_stress.py b/qa/tasks/watch_notify_stress.py index 8bce6282092..f3cdf0d5496 100644 --- a/qa/tasks/watch_notify_stress.py +++ b/qa/tasks/watch_notify_stress.py @@ -66,5 +66,5 @@ def task(ctx, config): yield finally: log.info('joining watch_notify_stress') - for i in testwatch.itervalues(): + for i in testwatch.values(): i.join()