Skip to content

Commit

Permalink
Remove deprecated parameter: concurrency_count (#2315)
Browse files Browse the repository at this point in the history
  • Loading branch information
ronensc authored Jan 3, 2024
1 parent 6ef00b0 commit 1066cbd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/gradio_webserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ def build_demo():
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)

0 comments on commit 1066cbd

Please sign in to comment.