mirror of
https://github.com/containers/podman-compose.git
synced 2025-07-01 05:00:19 +02:00
Merge pull request #1247 from whym/log-formatter-bug
Fixes #1237: Remove unnecessary 'or "text"'
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
|
||||
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:
|
||||
|
Reference in New Issue
Block a user