mirror of
https://github.com/docker/compose.git
synced 2026-06-25 10:38:23 +00:00
Fix double silent argument value
Fix for "TypeError: pull() got multiple values for keyword argument 'silent'." This changee9b6cc23fccaused additional value to be passed for the 'silent' argument, that was already passed there:f85da99ef3Signed-off-by: Nikita Vlaznev <nikita.dto@gmail.com>
This commit is contained in:
parent
5844dbb38e
commit
4286315bc9
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, True, silent=silent)
|
||||
service.pull(ignore_pull_failures, silent=silent)
|
||||
|
||||
_, errors = parallel.parallel_execute(
|
||||
services,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue