mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-03 15:10:21 -07:00
strategy: lost list order using with_items during displaying results Fixes #21008
This commit is contained in:
parent
820d7e805a
commit
ab81c6c0f3
1 changed files with 1 additions and 1 deletions
|
@ -327,7 +327,7 @@ class StrategyBase:
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
self._results_lock.acquire()
|
self._results_lock.acquire()
|
||||||
task_result = self._results.pop()
|
task_result = self._results.popleft()
|
||||||
except IndexError:
|
except IndexError:
|
||||||
break
|
break
|
||||||
finally:
|
finally:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue