Skip to content

Commit

Permalink
Merge pull request #928 from schugabe/patch-1
Browse files Browse the repository at this point in the history
add await for create_pods call
  • Loading branch information
p12tic authored May 6, 2024
2 parents 0ee7c26 + 5c4aa40 commit 35cbc49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion podman_compose.py
Original file line number Diff line number Diff line change
Expand Up @@ -2543,7 +2543,7 @@ async def compose_ps(compose, args):
"create a container similar to a service to run a one-off command",
)
async def compose_run(compose, args):
create_pods(compose, args)
await create_pods(compose, args)
compose.assert_services(args.service)
container_names = compose.container_names_by_service[args.service]
container_name = container_names[0]
Expand Down

0 comments on commit 35cbc49

Please sign in to comment.