Reduce queue timeout

Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
This commit is contained in:
Aanand Prasad 2016-04-08 19:07:40 +01:00
parent 5450a67c2d
commit be27e266da
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ def parallel_execute_stream(objects, func, get_deps):
yield event
try:
event = results.get(timeout=1)
event = results.get(timeout=0.1)
except Empty:
continue
# See https://github.com/docker/compose/issues/189