Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
aec2dc6c
Unverified
Commit
aec2dc6c
authored
Mar 23, 2026
by
Jee Jee Li
Committed by
GitHub
Mar 23, 2026
Browse files
[Bugfix][LoRA] Fix incorrect LoRA Log (#37877)
Signed-off-by:
Jee Jee Li
<
pandaleefree@gmail.com
>
parent
7938d121
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
vllm/lora/worker_manager.py
vllm/lora/worker_manager.py
+3
-2
No files found.
vllm/lora/worker_manager.py
View file @
aec2dc6c
...
...
@@ -148,8 +148,9 @@ class WorkerLoRAManager:
# Warn about adapter modules that will be ignored.
target_modules
=
self
.
lora_config
.
target_modules
expected_lora_modules_lst
=
list
(
expected_lora_modules
)
for
module_name
in
lora
.
loras
:
if
not
is_supported_lora_module
(
module_name
,
suppor
ted_lora_modules
):
if
not
is_supported_lora_module
(
module_name
,
expec
ted_lora_modules
_lst
):
logger
.
warning_once
(
"LoRA module '%s' in adapter '%s' is not in the "
"model's supported LoRA target modules [%s]. "
...
...
@@ -157,7 +158,7 @@ class WorkerLoRAManager:
"cause abnormal model behavior."
,
module_name
,
lora_request
.
lora_path
,
", "
.
join
(
sorted
(
suppor
ted_lora_modules
)),
", "
.
join
(
sorted
(
expec
ted_lora_modules
_lst
)),
)
elif
not
is_in_target_modules
(
module_name
,
target_modules
):
logger
.
warning_once
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment