mirror of
https://github.com/docker/compose.git
synced 2026-08-27 03:45:29 +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
a0119ae1a5
commit
3bd5a37429
1 changed files with 1 additions and 1 deletions
|
|
@ -467,7 +467,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)
|
||||
|
||||
parallel.parallel_execute(
|
||||
services,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue