diff --git a/python/sglang/srt/utils.py b/python/sglang/srt/utils.py index f095f71b7..f325050c7 100644 --- a/python/sglang/srt/utils.py +++ b/python/sglang/srt/utils.py @@ -1602,6 +1602,7 @@ def get_ip() -> str: def get_open_port() -> int: port = os.getenv("SGLANG_PORT") if port is not None: + port = int(port) while True: try: with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: