mirror of
https://github.com/containers/podman-compose.git
synced 2025-08-20 10:08:14 +02:00
Remove unnecessary 'or "text"'
Fixes #1237 Signed-off-by: Yusuke Matsubara <whym@whym.org>
This commit is contained in:
@@ -0,0 +1 @@
|
|||||||
|
Fixed regression of log output including "text" in detached mode.
|
@@ -3061,7 +3061,7 @@ async def run_container(
|
|||||||
|
|
||||||
# start the container
|
# start the container
|
||||||
log.debug("Starting task for container %s", name)
|
log.debug("Starting task for container %s", name)
|
||||||
return await compose.podman.run(*command, log_formatter=log_formatter or "text") # type: ignore[misc]
|
return await compose.podman.run(*command, log_formatter=log_formatter) # type: ignore[misc]
|
||||||
|
|
||||||
|
|
||||||
def deps_from_container(args: argparse.Namespace, cnt: dict) -> set:
|
def deps_from_container(args: argparse.Namespace, cnt: dict) -> set:
|
||||||
|
Reference in New Issue
Block a user