MrDrmm commited on
Commit
93a8f57
·
verified ·
1 Parent(s): b46f093

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -229,11 +229,11 @@ body {
229
 
230
  with gr.Blocks(css=custom_css) as demo:
231
  make_me()
232
- demo.queue(concurrency_count=50)
233
- demo.launch()
234
- #demo.queue(default_concurrency_limit=240, max_size=240)
235
  demo.launch(max_threads=400, ssr_mode=True)
236
  # https://github.com/gradio-app/gradio/issues/6339
237
-
238
 
239
 
 
229
 
230
  with gr.Blocks(css=custom_css) as demo:
231
  make_me()
232
+
233
+
234
+ demo.queue(default_concurrency_limit=240, max_size=240)
235
  demo.launch(max_threads=400, ssr_mode=True)
236
  # https://github.com/gradio-app/gradio/issues/6339
237
+ demo.launch()
238
 
239