mirror of
https://github.com/ansible/awx-operator.git
synced 2026-05-07 22:02:53 +00:00
allow configuration of uwsgi timeout
This is important when you have proxies in front of the service that may have stricter timeouts, as you need at least as strict a timeout at uwsgi to get meaningful traceback and see source of problem.
This commit is contained in:
@@ -304,8 +304,8 @@ data:
|
||||
max-requests = 1000
|
||||
buffer-size = 32768
|
||||
|
||||
harakiri = 120
|
||||
harakiri-graceful-timeout = 115
|
||||
harakiri = {{ uwsgi_timeout|int }}
|
||||
harakiri-graceful-timeout = {{ [(uwsgi_timeout|int - 2), 1] | max }}
|
||||
harakiri-graceful-signal = 6
|
||||
py-call-osafterfork = true
|
||||
|
||||
|
||||
Reference in New Issue
Block a user