Skip to content

Commit 4fa49b7

Browse files
authored
fix health check bug (#1111)
1 parent c208209 commit 4fa49b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rdagent/app/utils/health_check.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from rdagent.utils.env import cleanup_container
1414

1515

16-
def check_docker() -> None:
16+
def check_docker_status() -> None:
1717
container = None
1818
try:
1919
client = docker.from_env()
@@ -157,7 +157,7 @@ def health_check(
157157
env_check()
158158
if check_docker:
159159
check_any = True
160-
check_docker()
160+
check_docker_status()
161161
if check_ports:
162162
check_any = True
163163
check_and_list_free_ports()

0 commit comments

Comments
 (0)