Skip to content

Commit

Permalink
fix: podman health
Browse files Browse the repository at this point in the history
Signed-off-by: Aaron Pham <29749331+aarnphm@users.noreply.github.com>
  • Loading branch information
aarnphm committed Dec 8, 2022
1 parent b9b86fd commit f79b00b
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&#34;") # 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 f79b00b

Please sign in to comment.