Unverified Commit e2603fef authored by Yuan Tang's avatar Yuan Tang Committed by GitHub
Browse files

[Bugfix] Ensure LoRA path from the request can be included in err msg (#13450)


Signed-off-by: default avatarYuan Tang <terrytangyuan@gmail.com>
parent b53d7998
...@@ -133,7 +133,7 @@ class WorkerLoRAManager(AbstractWorkerManager): ...@@ -133,7 +133,7 @@ class WorkerLoRAManager(AbstractWorkerManager):
# For NotFoundError # For NotFoundError
raise ValueError( raise ValueError(
f"Loading lora {lora_request.lora_name} failed: No adapter " 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: except Exception as e:
# For BadRequestError # For BadRequestError
raise e raise e
......
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