Skip to content

Commit

Permalink
[Bugfix] Ensure LoRA path from the request can be included in err msg (
Browse files Browse the repository at this point in the history
…#13450)

Signed-off-by: Yuan Tang <[email protected]>
  • Loading branch information
terrytangyuan authored Feb 18, 2025
1 parent b53d799 commit e2603fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vllm/lora/worker_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def _load_adapter(self, lora_request: LoRARequest) -> LoRAModel:
# For NotFoundError
raise ValueError(
f"Loading lora {lora_request.lora_name} failed: No adapter "
f"found for {lora_path}") from e
f"found for {lora_request.lora_path}") from e
except Exception as e:
# For BadRequestError
raise e
Expand Down

0 comments on commit e2603fe

Please sign in to comment.