summaryrefslogtreecommitdiffstats
path: root/clover/controller/process/gunicorn_process.sh
diff options
context:
space:
mode:
Diffstat (limited to 'clover/controller/process/gunicorn_process.sh')
-rwxr-xr-xclover/controller/process/gunicorn_process.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/clover/controller/process/gunicorn_process.sh b/clover/controller/process/gunicorn_process.sh
index 033596f..d2fa4ef 100755
--- a/clover/controller/process/gunicorn_process.sh
+++ b/clover/controller/process/gunicorn_process.sh
@@ -8,4 +8,7 @@
# http://www.apache.org/licenses/LICENSE-2.0
#
-gunicorn --bind 0.0.0.0:8000 --chdir /control wsgi
+# it take a long time to add kubernetes. So I increse the timeout
+# and workers
+
+gunicorn --bind 0.0.0.0:8000 -t 1200 -w 5 --chdir /control wsgi