diff options
author | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-06-14 09:51:47 +0000 |
---|---|---|
committer | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-06-14 09:51:47 +0000 |
commit | 5be6c026f55760039b3ebb284cc2ce85586be4ac (patch) | |
tree | 09ee3f69f591b82d5518780d2ca758fd3760a528 /modules/api/api.py | |
parent | d80962681ae0f3456b1c2776f68c5c838d782786 (diff) | |
download | stable-diffusion-webui-gfx803-5be6c026f55760039b3ebb284cc2ce85586be4ac.tar.gz stable-diffusion-webui-gfx803-5be6c026f55760039b3ebb284cc2ce85586be4ac.tar.bz2 stable-diffusion-webui-gfx803-5be6c026f55760039b3ebb284cc2ce85586be4ac.zip |
rename routes
Diffstat (limited to 'modules/api/api.py')
-rw-r--r-- | modules/api/api.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/api/api.py b/modules/api/api.py index cb1cde78..5ea1d21c 100644 --- a/modules/api/api.py +++ b/modules/api/api.py @@ -210,9 +210,9 @@ class Api: self.add_api_route("/sdapi/v1/script-info", self.get_script_info, methods=["GET"], response_model=List[models.ScriptInfo]) if shared.cmd_opts.add_stop_route: - self.add_api_route("/sdapi/v1/quit-webui", self.quit_webui, methods=["POST"]) - self.add_api_route("/sdapi/v1/restart-webui", self.restart_webui, methods=["POST"]) - self.add_api_route("/_stop", self.stop_route, methods=["POST"]) + self.add_api_route("/sdapi/v1/server-kill", self.kill_webui, methods=["POST"]) + self.add_api_route("/sdapi/v1/server-restart", self.restart_webui, methods=["POST"]) + self.add_api_route("/sdapi/v1/server-terminate", self.terminate_webui, methods=["POST"]) self.default_script_arg_txt2img = [] self.default_script_arg_img2img = [] @@ -721,13 +721,13 @@ class Api: self.app.include_router(self.router) uvicorn.run(self.app, host=server_name, port=port, timeout_keep_alive=0) - def quit_webui(self): + def kill_webui(self): restart.stop_program() def restart_webui(self): if restart.is_restartable(): restart.restart_program() - def stop_route(request): + def terminate_webui(request): shared.state.server_command = "stop" return Response("Stopping.") |