mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Remove sleeps and rely on regular queue options to process results
This commit is contained in:
parent
aef20c4242
commit
68d44e48ba
1 changed files with 6 additions and 4 deletions
|
@ -254,9 +254,10 @@ class StrategyBase:
|
||||||
continue
|
continue
|
||||||
return None
|
return None
|
||||||
|
|
||||||
while not self._final_q.empty() and not self._tqm._terminated:
|
passes = 0
|
||||||
|
while not self._tqm._terminated:
|
||||||
try:
|
try:
|
||||||
task_result = self._final_q.get(block=False)
|
task_result = self._final_q.get(timeout=0.001)
|
||||||
original_host = get_original_host(task_result._host)
|
original_host = get_original_host(task_result._host)
|
||||||
original_task = iterator.get_original_task(original_host, task_result._task)
|
original_task = iterator.get_original_task(original_host, task_result._task)
|
||||||
task_result._host = original_host
|
task_result._host = original_host
|
||||||
|
@ -451,7 +452,9 @@ class StrategyBase:
|
||||||
ret_results.append(task_result)
|
ret_results.append(task_result)
|
||||||
|
|
||||||
except Queue.Empty:
|
except Queue.Empty:
|
||||||
time.sleep(0.005)
|
passes += 1
|
||||||
|
if passes > 2:
|
||||||
|
break
|
||||||
|
|
||||||
if one_pass:
|
if one_pass:
|
||||||
break
|
break
|
||||||
|
@ -474,7 +477,6 @@ class StrategyBase:
|
||||||
|
|
||||||
results = self._process_pending_results(iterator)
|
results = self._process_pending_results(iterator)
|
||||||
ret_results.extend(results)
|
ret_results.extend(results)
|
||||||
time.sleep(0.005)
|
|
||||||
|
|
||||||
display.debug("no more pending results, returning what we have")
|
display.debug("no more pending results, returning what we have")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue