diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-03-21 05:49:08 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-03-21 05:49:08 +0000 |
commit | 6eacaad4a92f5c85eb9addd096a673bf3d5db5fe (patch) | |
tree | f4111a85d759cd7a9a20f84fcaba58d8818b4149 /webui.py | |
parent | f93547be18641039aca24e8166f0ed7d495da15e (diff) | |
download | stable-diffusion-webui-gfx803-6eacaad4a92f5c85eb9addd096a673bf3d5db5fe.tar.gz stable-diffusion-webui-gfx803-6eacaad4a92f5c85eb9addd096a673bf3d5db5fe.tar.bz2 stable-diffusion-webui-gfx803-6eacaad4a92f5c85eb9addd096a673bf3d5db5fe.zip |
enable queue by default
more stylistic changes
Diffstat (limited to 'webui.py')
-rw-r--r-- | webui.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -240,7 +240,7 @@ def webui(): shared.demo = modules.ui.create_ui()
startup_timer.record("create ui")
- if cmd_opts.gradio_queue:
+ if not cmd_opts.no_gradio_queue:
shared.demo.queue(64)
gradio_auth_creds = []
|