From 6d4d3bc81d8cb5d3e2546d93f6e8eeb4e5c320a7 Mon Sep 17 00:00:00 2001 From: Liangsheng Yin Date: Tue, 6 May 2025 22:06:41 +0800 Subject: [PATCH] Fix not "import os" (#6057) --- python/sglang/srt/disaggregation/decode.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/sglang/srt/disaggregation/decode.py b/python/sglang/srt/disaggregation/decode.py index a43704cd4..0e64c743b 100644 --- a/python/sglang/srt/disaggregation/decode.py +++ b/python/sglang/srt/disaggregation/decode.py @@ -21,6 +21,7 @@ Life cycle of a request in the decode server from __future__ import annotations import logging +import os from collections import deque from dataclasses import dataclass from typing import TYPE_CHECKING, List, Optional, Tuple