Remove deprecated parameter: concurrency_count (#2315)

This commit is contained in:
Ronen Schaffer
2024-01-03 19:56:21 +02:00
committed by GitHub
parent 6ef00b03a2
commit 1066cbd152

View File

@@ -47,6 +47,6 @@ if __name__ == "__main__":
args = parser.parse_args()
demo = build_demo()
demo.queue(concurrency_count=100).launch(server_name=args.host,
server_port=args.port,
share=True)
demo.queue().launch(server_name=args.host,
server_port=args.port,
share=True)