mirror of
https://github.com/ansible/awx.git
synced 2026-01-10 15:32:07 -03:30
Fix task ending in error due to bad iterator (#15355)
This commit is contained in:
parent
209e7e27b1
commit
fde8af9f11
@ -984,7 +984,7 @@ def periodic_resource_sync():
|
||||
|
||||
executor = SyncExecutor()
|
||||
executor.run()
|
||||
for key, item_list in executor.results:
|
||||
for key, item_list in executor.results.items():
|
||||
if not item_list or key == 'noop':
|
||||
continue
|
||||
# Log creations and conflicts
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user