diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-06-27 08:41:36 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-27 08:41:36 +0300 |
commit | 3e76ae5f50836324cbacd0554595285731be38a3 (patch) | |
tree | 02e1a2d04b7dc46d09f82a31d4bdf5535fa966d8 /modules/cmd_args.py | |
parent | f005efae721e0dbb46c49b559011ee757cd162fb (diff) | |
parent | 2e1710d88edc1e1a08b01c063fa386b50e5abc30 (diff) | |
download | stable-diffusion-webui-gfx803-3e76ae5f50836324cbacd0554595285731be38a3.tar.gz |
Merge pull request #11146 from AUTOMATIC1111/api-quit-restart
api quit restart
Diffstat (limited to 'modules/cmd_args.py')
-rw-r--r-- | modules/cmd_args.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/cmd_args.py b/modules/cmd_args.py index de905caa..624dcb4f 100644 --- a/modules/cmd_args.py +++ b/modules/cmd_args.py @@ -106,4 +106,4 @@ parser.add_argument("--skip-version-check", action='store_true', help="Do not ch 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)
parser.add_argument('--subpath', type=str, help='customize the subpath for gradio, use with reverse proxy')
-parser.add_argument('--add-stop-route', action='store_true', help='add /_stop route to stop server')
+parser.add_argument('--add-stop-route', action='store_true', help='enable server stop/restart/kill via api')
|