This is an automated email from the ASF dual-hosted git repository.

yongjiezhao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 883241070f fix: make max-requests and max-requests-jitter adjustable 
(#20733)
883241070f is described below

commit 883241070f5dd717d188b69dd681af127656283b
Author: Multazim Deshmukh <[email protected]>
AuthorDate: Sun Jul 17 18:29:16 2022 +0530

    fix: make max-requests and max-requests-jitter adjustable (#20733)
    
    Co-authored-by: Multazim Deshmukh <[email protected]>
---
 docker/run-server.sh | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/docker/run-server.sh b/docker/run-server.sh
index 064f47b9c2..1136852d02 100644
--- a/docker/run-server.sh
+++ b/docker/run-server.sh
@@ -28,6 +28,8 @@ gunicorn \
     --threads ${SERVER_THREADS_AMOUNT:-20} \
     --timeout ${GUNICORN_TIMEOUT:-60} \
     --keep-alive ${GUNICORN_KEEPALIVE:-2} \
+    --max-requests ${WORKER_MAX_REQUESTS:0} \
+    --max-requests-jitter ${WORKER_MAX_REQUESTS_JITTER:0} \
     --limit-request-line ${SERVER_LIMIT_REQUEST_LINE:-0} \
     --limit-request-field_size ${SERVER_LIMIT_REQUEST_FIELD_SIZE:-0} \
     "${FLASK_APP}"

Reply via email to