From 379410e9b1a5518737c66244e1456b5c865bad2e Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Fri, 14 Jul 2023 11:17:19 -0600 Subject: [PATCH] ansible.FailureAnalyzer: items -> values Signed-off-by: Zack Cerza --- teuthology/task/ansible.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/ansible.py b/teuthology/task/ansible.py index 6ccdc7664c..331c9b7928 100644 --- a/teuthology/task/ansible.py +++ b/teuthology/task/ansible.py @@ -43,7 +43,7 @@ class FailureAnalyzer: lines = set() if failure_obj is None: return lines - for host_obj in failure_obj.items(): + for host_obj in failure_obj.values(): lines = lines.union(self.analyze_host_record(host_obj)) return lines -- 2.39.5