Skip to content

Commit

Permalink
qa fix
Browse files Browse the repository at this point in the history
  • Loading branch information
a1fred committed Dec 8, 2022
1 parent 337b570 commit 68f06d9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion carnival/contrib/steps/docker_compose.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,10 @@ def run(self, c: Connection) -> typing.Any:
scale_str = " ".join([f" --scale {service_name}={count}" for service_name, count in self.scale.items()])
else:
scale_str = ""
c.run(f"docker-compose up -d --remove-orphans --no-recreate {onlystr} {scale_str}", cwd=self.app_dir, hide=False)
c.run(
f"docker-compose up -d --remove-orphans --no-recreate {onlystr} {scale_str}",
cwd=self.app_dir, hide=False
)


class Ps(Step):
Expand Down

0 comments on commit 68f06d9

Please sign in to comment.