From 22e225ad1e109f1781502d9d9a0063eaac0f1b5f Mon Sep 17 00:00:00 2001 From: hlky <106811348+hlky@users.noreply.github.com> Date: Wed, 24 Aug 2022 21:38:29 +0100 Subject: [PATCH] Queue Fix for Issue#7 --- webui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webui.py b/webui.py index 762ff16..85c3e7c 100644 --- a/webui.py +++ b/webui.py @@ -918,5 +918,5 @@ demo = gr.TabbedInterface( css=("" if opt.no_progressbar_hiding else css_hide_progressbar), theme="default", ) - -demo.launch(show_error=True, server_name='0.0.0.0') \ No newline at end of file +demo.queue(concurrency_count=1) +demo.launch(show_error=True, server_name='0.0.0.0')