Skip to content

Commit ae87ddd

Browse files
authored
[Refactor] Remove Unused Environment Variable VLLM_NO_DEPRECATION_WARNING (#22199)
Signed-off-by: yewentao256 <[email protected]>
1 parent a7cb610 commit ae87ddd

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

vllm/envs.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@
7070
NVCC_THREADS: Optional[str] = None
7171
VLLM_USE_PRECOMPILED: bool = False
7272
VLLM_TEST_USE_PRECOMPILED_NIGHTLY_WHEEL: bool = False
73-
VLLM_NO_DEPRECATION_WARNING: bool = False
7473
VLLM_KEEP_ALIVE_ON_ENGINE_DEATH: bool = False
7574
CMAKE_BUILD_TYPE: Optional[str] = None
7675
VERBOSE: bool = False
@@ -582,10 +581,6 @@ def get_vllm_port() -> Optional[int]:
582581
lambda: bool(
583582
int(os.getenv("VLLM_ENABLE_FUSED_MOE_ACTIVATION_CHUNKING", "1"))),
584583

585-
# If set, vllm will skip the deprecation warnings.
586-
"VLLM_NO_DEPRECATION_WARNING":
587-
lambda: bool(int(os.getenv("VLLM_NO_DEPRECATION_WARNING", "0"))),
588-
589584
# If set, the OpenAI API server will stay alive even after the underlying
590585
# AsyncLLMEngine errors and stops serving requests
591586
"VLLM_KEEP_ALIVE_ON_ENGINE_DEATH":

0 commit comments

Comments
 (0)