diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-05-22 19:17:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-22 19:17:25 +0000 |
commit | d77ba18d5d127714a8bcc685538296e7ce6d4e05 (patch) | |
tree | a8c1dc79206161b0c06547936566c6b1a4fc7ce2 /modules/api/api.py | |
parent | cc2f6e3b7b8d720a8e0fb2732751e34b7f41c2e9 (diff) | |
parent | efc98530595443d31c773526c6b760b722019d62 (diff) | |
download | stable-diffusion-webui-gfx803-d77ba18d5d127714a8bcc685538296e7ce6d4e05.tar.gz stable-diffusion-webui-gfx803-d77ba18d5d127714a8bcc685538296e7ce6d4e05.tar.bz2 stable-diffusion-webui-gfx803-d77ba18d5d127714a8bcc685538296e7ce6d4e05.zip |
Merge pull request #10635 from prodialabs/master
disable `timeout_keep_alive`: fixes #10625 #10510 #10474
Diffstat (limited to 'modules/api/api.py')
-rw-r--r-- | modules/api/api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/api/api.py b/modules/api/api.py index eee99bbb..6a456861 100644 --- a/modules/api/api.py +++ b/modules/api/api.py @@ -700,4 +700,4 @@ class Api: def launch(self, server_name, port): self.app.include_router(self.router) - uvicorn.run(self.app, host=server_name, port=port) + uvicorn.run(self.app, host=server_name, port=port, timeout_keep_alive=0) |