Skip to content

Commit 9a3d817

Browse files
committed
fuix
1 parent a43e7ae commit 9a3d817

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightllm/server/router/req_queue/base_queue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def arrange(self, id_list: List[int]):
3838
id2index_list = {}
3939
for index, req in enumerate(self.waiting_req_list):
4040
id2index_list[req.request_id] = index
41-
self.waiting_req_id_list = [self.waiting_req_list[id2index_list[id]] for id in id_list]
41+
self.waiting_req_list = [self.waiting_req_list[id2index_list[id]] for id in id_list]
4242

4343
def pop_list(self, req_list):
4444
id2index_list = {}

0 commit comments

Comments
 (0)