소스 검색

Reduce queue timeout

Signed-off-by: Aanand Prasad <[email protected]>
Aanand Prasad 9 년 전
부모
커밋
be27e266da
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      compose/parallel.py

+ 1 - 1
compose/parallel.py

@@ -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