From 4cdecebe6e4133532281591501e22dbf30c206d7 Mon Sep 17 00:00:00 2001 From: Petar Efnushev Date: Tue, 4 Apr 2017 09:05:13 +0200 Subject: [PATCH] Start CKAN using gevent for concurrency --- rootfs/setup/start_ckan.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rootfs/setup/start_ckan.sh b/rootfs/setup/start_ckan.sh index dd8a8da..bac73a4 100755 --- a/rootfs/setup/start_ckan.sh +++ b/rootfs/setup/start_ckan.sh @@ -2,7 +2,7 @@ python prerun.py if [ $? -eq 0 ] then - gunicorn --log-file=- --paste production.ini + gunicorn --log-file=- -k gevent -w 4 --paste production.ini else echo "[prerun] failed...not starting CKAN." fi