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:
|
||||
try:
|
||||
self._results_lock.acquire()
|
||||
task_result = self._results.pop()
|
||||
task_result = self._results.popleft()
|
||||
except IndexError:
|
||||
break
|
||||
finally:
|
||||
|
|
Loading…
Reference in a new issue