Skip to content

Commit 1b718d6

Browse files
jikunshangabmfy
authored andcommitted
[BUGFIX] Fix UnspecifiedPlatform package name (vllm-project#11916)
Signed-off-by: Kunshang Ji <[email protected]>
1 parent 017dc48 commit 1b718d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vllm/platforms/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def resolve_current_platform_cls_qualname() -> str:
179179
logger.info("Automatically detected platform %s.",
180180
activated_builtin_plugins[0])
181181
else:
182-
platform_cls_qualname = "vllm.interface.UnspecifiedPlatform"
182+
platform_cls_qualname = "vllm.platforms.interface.UnspecifiedPlatform"
183183
logger.info(
184184
"No platform detected, vLLM is running on UnspecifiedPlatform")
185185
return platform_cls_qualname

0 commit comments

Comments
 (0)