diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-03-21 08:49:08 +0300 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-03-25 09:00:37 +0300 |
commit | af2db25c84c9a226ab34959e868fc18740418b4b (patch) | |
tree | b8d0136e2227a409813fe67d8d33220858445fe6 /webui.py | |
parent | 43a0912a07376fd045095de0fea54de098b113ef (diff) |
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 = []
|