nevreal commited on
Commit
2fb7bbf
1 Parent(s): 2eabef7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -9
app.py CHANGED
@@ -309,12 +309,8 @@ with gr.Blocks(title="🔊",theme=gr.themes.Base(primary_hue="rose",neutral_hue=
309
  )
310
 
311
 
312
- if config.iscolab:
313
- app.queue(concurrency_count=511, max_size=1022).launch(share=True)
314
- else:
315
- app.queue(concurrency_count=511, max_size=1022).launch(
316
- server_name="0.0.0.0",
317
- inbrowser=not config.noautoopen,
318
- server_port=config.listen_port,
319
- quiet=True,
320
- )
 
309
  )
310
 
311
 
312
+ app.queue(concurrency_count=511, max_size=1022).launch(
313
+ server_name="0.0.0.0",
314
+ inbrowser=not config.noautoopen,
315
+ server_port=config.listen_port,
316
+ )