Fix execute call parameter (#603)

pull/604/head^2 v1.1.0-052f0df-202310242217
David Boreham 2023-10-24 16:16:57 -06:00 committed by GitHub
parent c51671f786
commit 052f0df4b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -48,9 +48,9 @@ class DockerDeployer(Deployer):
except DockerException as e:
raise DeployerException(e)
def compose_execute(self, service_name, command, envs):
def compose_execute(self, service, command, envs):
try:
return self.docker.compose.execute(service_name=service_name, command=command, envs=envs)
return self.docker.compose.execute(service=service, command=command, envs=envs)
except DockerException as e:
raise DeployerException(e)