Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix bug for waiting queue. #706

Merged
merged 1 commit into from
Jan 16, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions lightllm/server/router/req_queue/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ def build_req_queue(args, router, dp_size: int):
queue_class = ContinuesBatchQueue
if args.first_token_constraint_mode:
queue_class = ContinuesBatchQueue
queue_class = ContinuesBatchQueue

if queue_class is None:
queue_class = ContinuesBatchQueue

if dp_size == 1:
return queue_class(args, router, 0, dp_size)
else:
Expand Down
Loading