[Misc] Remove #4789 workaround left in vllm/entrypoints/openai/run_batch.py (#5756)

This commit is contained in:
zifeitong 2024-06-21 20:33:12 -07:00 committed by GitHub
parent 9c62db07ed
commit ff9ddbceee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,5 +1,4 @@
import asyncio
import sys
from io import StringIO
from typing import Awaitable, List
@ -137,9 +136,6 @@ async def main(args):
output_buffer.seek(0)
await write_file(args.output_file, output_buffer.read().strip())
# Temporary workaround for https://github.com/vllm-project/vllm/issues/4789
sys.exit(0)
if __name__ == "__main__":
args = parse_args()