Skip to content

Commit

Permalink
[Bugfix] Fix priority in multiprocessing engine (vllm-project#9277)
Browse files Browse the repository at this point in the history
Signed-off-by: Maxime Fournioux <55544262+mfournioux@users.noreply.github.com>
  • Loading branch information
schoennenbeck authored and mfournioux committed Nov 20, 2024
1 parent 97307d8 commit 99750c2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vllm/engine/multiprocessing/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,8 @@ def _handle_process_request(self, request: RPCProcessRequest):
params=request.params,
lora_request=request.lora_request,
trace_headers=request.trace_headers,
prompt_adapter_request=request.prompt_adapter_request)
prompt_adapter_request=request.prompt_adapter_request,
priority=request.priority)

if self.log_requests:
logger.info("Added request %s.", request.request_id)
Expand Down

0 comments on commit 99750c2

Please sign in to comment.