mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
strategy: lost list order using with_items during displaying results Fixes #21008
This commit is contained in:
committed by
Brian Coca
parent
820d7e805a
commit
ab81c6c0f3
@@ -327,7 +327,7 @@ class StrategyBase:
|
||||
while True:
|
||||
try:
|
||||
self._results_lock.acquire()
|
||||
task_result = self._results.pop()
|
||||
task_result = self._results.popleft()
|
||||
except IndexError:
|
||||
break
|
||||
finally:
|
||||
|
||||
Reference in New Issue
Block a user