mirror of
https://github.com/docker/compose.git
synced 2026-06-25 10:38:23 +00:00
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 <evan@vendhq.com>
This commit is contained in:
parent
4286315bc9
commit
d1289554d5
1 changed files with 1 additions and 1 deletions
|
|
@ -498,7 +498,7 @@ class Project(object):
|
|||
|
||||
if parallel_pull:
|
||||
def pull_service(service):
|
||||
service.pull(ignore_pull_failures, silent=silent)
|
||||
service.pull(ignore_pull_failures, True)
|
||||
|
||||
_, errors = parallel.parallel_execute(
|
||||
services,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue