You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove max-requests and add die-on-term uwsgi flag from docker start script
We've been seeing issues in k8s whereby the uwsgi pod would hang after 10 minutes and
persist in a "Terminated" state. The theory is that the max_requests limit is reached,
uwsgi tries to restart and k8s interprets this as a failing pod that needs to be
replaced, but never is because k8s sends SIGTERM and uwsgi ignores this without the
--die-on-term flag. This addresses both issues.
0 commit comments