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: Sumit Dubey <sumit.dubey2@ibm.com>
  • Loading branch information
schoennenbeck authored and sumitd2 committed Nov 14, 2024
1 parent b5199f4 commit 77fe70b
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 77fe70b

Please sign in to comment.