Skip to content

Commit d717033

Browse files
committed
Fixing parse for waiting
1 parent d1baa51 commit d717033

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

olmocr/pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@ async def process_line(line):
615615
if match:
616616
last_running_req = int(match.group(1))
617617

618-
match = re.search(r'Pending: (\d+)', line)
618+
match = re.search(r'Waiting: (\d+)', line)
619619
if match:
620620
last_queue_req = int(match.group(1))
621621
logger.info(f"vllm running req: {last_running_req} queue req: {last_queue_req}")

0 commit comments

Comments
 (0)