We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a43e7ae commit 9a3d817Copy full SHA for 9a3d817
lightllm/server/router/req_queue/base_queue.py
@@ -38,7 +38,7 @@ def arrange(self, id_list: List[int]):
38
id2index_list = {}
39
for index, req in enumerate(self.waiting_req_list):
40
id2index_list[req.request_id] = index
41
- self.waiting_req_id_list = [self.waiting_req_list[id2index_list[id]] for id in id_list]
+ self.waiting_req_list = [self.waiting_req_list[id2index_list[id]] for id in id_list]
42
43
def pop_list(self, req_list):
44
0 commit comments