We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f00900a commit 294c9b3Copy full SHA for 294c9b3
vllm/entrypoints/openai/run_batch.py
@@ -1,5 +1,4 @@
1
import asyncio
2
-import sys
3
from io import StringIO
4
from typing import Awaitable, List
5
@@ -137,9 +136,6 @@ async def main(args):
137
136
output_buffer.seek(0)
138
await write_file(args.output_file, output_buffer.read().strip())
139
140
- # Temporary workaround for https://github.com/vllm-project/vllm/issues/4789
141
- sys.exit(0)
142
-
143
144
if __name__ == "__main__":
145
args = parse_args()
0 commit comments