aboutsummaryrefslogtreecommitdiff
path: root/webui.py
diff options
context:
space:
mode:
authorw-e-w <40751091+w-e-w@users.noreply.github.com>2023-06-12 18:15:27 +0900
committerw-e-w <40751091+w-e-w@users.noreply.github.com>2023-06-12 18:15:27 +0900
commitb9664ab6154818680ee25920e229b808a3cdec68 (patch)
treec1273af6374e8e098f252ee901abbfb1907788e2 /webui.py
parent9142be0a0d8cea37cf1ae86c17fc7dcb161d9a42 (diff)
move _stop route to api
Diffstat (limited to 'webui.py')
-rw-r--r--webui.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/webui.py b/webui.py
index 136d036d..ae6dc9fb 100644
--- a/webui.py
+++ b/webui.py
@@ -362,11 +362,6 @@ def api_only():
api.launch(server_name="0.0.0.0" if cmd_opts.listen else "127.0.0.1", port=cmd_opts.port if cmd_opts.port else 7861)
-def stop_route(request):
- shared.state.server_command = "stop"
- return Response("Stopping.")
-
-
def webui():
launch_api = cmd_opts.api
initialize()
@@ -404,8 +399,6 @@ def webui():
"redoc_url": "/redoc",
},
)
- if cmd_opts.add_stop_route:
- app.add_route("/_stop", stop_route, methods=["POST"])
# after initial launch, disable --autolaunch for subsequent restarts
cmd_opts.autolaunch = False