Skip to content

Commit

Permalink
fix(container): podman health result string parsing (#3330)
Browse files Browse the repository at this point in the history
  • Loading branch information
aarnphm committed Dec 8, 2022
1 parent b9b86fd commit a2a4c5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bentoml/_internal/container/podman.py
Expand Up @@ -41,7 +41,7 @@ def health() -> bool:
.strip("\n"") # strip quotation marks from JSON format.
.lower()
)
return output == "running"
return output == '"running"'


def parse_dict_opt(d: dict[str, str]) -> str:
Expand Down

0 comments on commit a2a4c5e

Please sign in to comment.