try allow parallel requests

This commit is contained in:
Lucas Armand
2025-11-11 11:27:05 -08:00
parent 7db54f3bd7
commit 353462ecb8
+1 -1
View File
@@ -89,7 +89,7 @@ class ComfyWorkflowHandler(EndpointHandler[ComfyWorkflowData]):
backend = Backend( backend = Backend(
model_server_url=MODEL_SERVER_URL, model_server_url=MODEL_SERVER_URL,
model_log_file=os.environ["MODEL_LOG"], model_log_file=os.environ["MODEL_LOG"],
allow_parallel_requests=False, allow_parallel_requests=True,
benchmark_handler=ComfyWorkflowHandler( benchmark_handler=ComfyWorkflowHandler(
benchmark_runs=3, benchmark_words=100 benchmark_runs=3, benchmark_words=100
), ),