浏览代码

Always silence pull output with --parallel

This is how things were prior to the addition of the --quiet flag.
Making it not silent produces output that's weird and difficult to read.

Signed-off-by: Evan Shaw <[email protected]>
Evan Shaw 8 年之前
父节点
当前提交
a891fc1d9a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      compose/project.py

+ 1 - 1
compose/project.py

@@ -467,7 +467,7 @@ class Project(object):
 
         if parallel_pull:
             def pull_service(service):
-                service.pull(ignore_pull_failures, silent=silent)
+                service.pull(ignore_pull_failures, True)
 
             parallel.parallel_execute(
                 services,