mirror of
https://github.com/containers/podman-compose.git
synced 2024-11-22 16:03:16 +01:00
fix syntax error without a new line
Signed-off-by: Cody Hutchins <codyhutchins@seed-innovations.com>
This commit is contained in:
parent
68f745fe62
commit
af6a3069ce
@ -1530,7 +1530,8 @@ def compose_up(compose, args):
|
||||
continue
|
||||
# TODO: remove sleep from podman.run
|
||||
obj = compose if exit_code_from == cnt['_service'] else None
|
||||
thread = Thread(target=compose.podman.run, args=[[], 'start', ['-a', cnt['name']]], kwargs={"obj":obj, "log_formatter": log_formatter}, daemon=True, name=cnt['name'])thread.start()
|
||||
thread = Thread(target=compose.podman.run, args=[[], 'start', ['-a', cnt['name']]], kwargs={"obj":obj, "log_formatter": log_formatter}, daemon=True, name=cnt['name'])
|
||||
thread.start()
|
||||
threads.append(thread)
|
||||
time.sleep(1)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user