Unverified Commit 41bf5612 authored by Beim's avatar Beim Committed by GitHub
Browse files

[Misc] fix typo: add missing space in lora adapter error message (#12564)


Signed-off-by: default avatarBeim <beim2015@outlook.com>
parent a2769032
...@@ -203,7 +203,7 @@ class OpenAIServingModels: ...@@ -203,7 +203,7 @@ class OpenAIServingModels:
for lora_request in self.lora_requests): for lora_request in self.lora_requests):
return create_error_response( return create_error_response(
message= message=
f"The lora adapter '{request.lora_name}' has already been" f"The lora adapter '{request.lora_name}' has already been "
"loaded.", "loaded.",
err_type="InvalidUserInput", err_type="InvalidUserInput",
status_code=HTTPStatus.BAD_REQUEST) status_code=HTTPStatus.BAD_REQUEST)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment