Skip to content
Snippets Groups Projects
Commit 65ba01b9 authored by Tim Kreuzer's avatar Tim Kreuzer
Browse files

Merge branch 'update-config' into 'main'

make timeout configurable

See merge request !14
parents b52e68a0 33690594
No related branches found
No related tags found
1 merge request!14make timeout configurable
Pipeline #107599 passed
......@@ -79,7 +79,7 @@ workers = int(os.environ.get("GUNICORN_PROCESSES", 16))
threads = int(os.environ.get("GUNICORN_THREADS", 1))
worker_class = "sync"
# worker_connections = 1000
timeout = 30
timeout = int(os.environ.get("GUNICORN_TIMEOUT", 30))
keepalive = 2
#
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment