Fix sleep intervals (14219)

This commit is contained in:
Andrey Shestakov 2016-05-31 09:33:58 +03:00
parent 018d3c3118
commit 295c7ce1c8
2 changed files with 4 additions and 4 deletions

View file

@ -106,7 +106,7 @@ class ResultProcess(multiprocessing.Process):
try:
result = self._read_worker_result()
if result is None:
time.sleep(0.0001)
time.sleep(0.01)
continue
# send callbacks for 'non final' results

View file

@ -196,7 +196,7 @@ class StrategyBase:
self._cur_worker += 1
if self._cur_worker >= len(self._workers):
self._cur_worker = 0
time.sleep(0.0001)
time.sleep(0.01)
if queued:
break
@ -389,7 +389,7 @@ class StrategyBase:
raise AnsibleError("unknown result message received: %s" % result[0])
except Queue.Empty:
time.sleep(0.0001)
time.sleep(0.01)
if one_pass:
break
@ -408,7 +408,7 @@ class StrategyBase:
while self._pending_results > 0 and not self._tqm._terminated:
results = self._process_pending_results(iterator)
ret_results.extend(results)
time.sleep(0.0001)
time.sleep(0.01)
display.debug("no more pending results, returning what we have")
return ret_results