diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-03-21 05:49:08 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-03-25 06:00:37 +0000 |
commit | af2db25c84c9a226ab34959e868fc18740418b4b (patch) | |
tree | b8d0136e2227a409813fe67d8d33220858445fe6 /webui.py | |
parent | 43a0912a07376fd045095de0fea54de098b113ef (diff) | |
download | stable-diffusion-webui-gfx803-af2db25c84c9a226ab34959e868fc18740418b4b.tar.gz stable-diffusion-webui-gfx803-af2db25c84c9a226ab34959e868fc18740418b4b.tar.bz2 stable-diffusion-webui-gfx803-af2db25c84c9a226ab34959e868fc18740418b4b.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 = []
|