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