Skip to content

Commit

Permalink
Fix execute call parameter (#603)
Browse files Browse the repository at this point in the history
  • Loading branch information
dboreham authored Oct 24, 2023
1 parent c51671f commit 052f0df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/deploy_docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ def compose_port(self, service, private_port):
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)

Expand Down

0 comments on commit 052f0df

Please sign in to comment.