mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
Fix double silent argument value
Fix for "TypeError: pull() got multiple values for keyword argument 'silent'." This changee9b6cc23fc
caused additional value to be passed for the 'silent' argument, that was already passed there:f85da99ef3
Signed-off-by: Nikita Vlaznev <nikita.dto@gmail.com>
This commit is contained in:
parent
7a4c328c41
commit
78bb879419
@ -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…
x
Reference in New Issue
Block a user