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 /modules/shared.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 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/shared.py b/modules/shared.py index f28a12cc..0b70d104 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -107,7 +107,8 @@ parser.add_argument("--cors-allow-origins-regex", type=str, help="Allowed CORS o parser.add_argument("--tls-keyfile", type=str, help="Partially enables TLS, requires --tls-certfile to fully function", default=None)
parser.add_argument("--tls-certfile", type=str, help="Partially enables TLS, requires --tls-keyfile to fully function", default=None)
parser.add_argument("--server-name", type=str, help="Sets hostname of server", default=None)
-parser.add_argument("--gradio-queue", action='store_true', help="Uses gradio queue; experimental option; breaks restart UI button")
+parser.add_argument("--gradio-queue", action='store_true', help="does not do anything", default=True)
+parser.add_argument("--no-gradio-queue", action='store_true', help="Disables gradio queue; causes the webpage to use http requests instead of websockets; was the defaul in earlier versions")
parser.add_argument("--skip-version-check", action='store_true', help="Do not check versions of torch and xformers")
parser.add_argument("--no-hashing", action='store_true', help="disable sha256 hashing of checkpoints to help loading performance", default=False)
parser.add_argument("--no-download-sd-model", action='store_true', help="don't download SD1.5 model even if no model is found in --ckpt-dir", default=False)
|