From aff79f101f2eac1c4674c7b54043f06225127678 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wang=20Ran=20=28=E6=B1=AA=E7=84=B6=29?= Date: Thu, 13 Mar 2025 12:20:18 +0800 Subject: [PATCH] simple bugfix (#4342) --- python/sglang/srt/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/sglang/srt/utils.py b/python/sglang/srt/utils.py index f0eb2495c..acc65a0f7 100644 --- a/python/sglang/srt/utils.py +++ b/python/sglang/srt/utils.py @@ -1348,7 +1348,7 @@ def kill_itself_when_parent_died(): libc = ctypes.CDLL("libc.so.6") libc.prctl(PR_SET_PDEATHSIG, signal.SIGKILL) else: - logger.warninig("kill_itself_when_parent_died is only supported in linux.") + logger.warning("kill_itself_when_parent_died is only supported in linux.") def set_uvicorn_logging_configs():