mirror of
https://github.com/containers/podman-compose.git
synced 2025-04-03 13:20:51 +02: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
|
continue
|
||||||
# TODO: remove sleep from podman.run
|
# TODO: remove sleep from podman.run
|
||||||
obj = compose if exit_code_from == cnt['_service'] else None
|
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)
|
threads.append(thread)
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user