Skip to content

Commit 7105198

Browse files
authored
Merge pull request #1247 from whym/log-formatter-bug
Fixes #1237: Remove unnecessary 'or "text"'
2 parents 61392e9 + 8f9f6d0 commit 7105198

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fixed regression of log output including "text" in detached mode.

podman_compose.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3061,7 +3061,7 @@ async def run_container(
30613061

30623062
# start the container
30633063
log.debug("Starting task for container %s", name)
3064-
return await compose.podman.run(*command, log_formatter=log_formatter or "text") # type: ignore[misc]
3064+
return await compose.podman.run(*command, log_formatter=log_formatter) # type: ignore[misc]
30653065

30663066

30673067
def deps_from_container(args: argparse.Namespace, cnt: dict) -> set:

0 commit comments

Comments
 (0)