aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzsloan2020-05-13 14:04:03 -0500
committerGitHub2020-05-13 14:04:03 -0500
commit62d284be2576a40af44554f69290a78112815752 (patch)
treecea73eaeecd81908521d3095eab692f5b3d3a0d2
parent55f82e6f703d9af3e8b93d6c4930f3ce3681405f (diff)
parent481dc87ee2a04671c98066e4c1f30d9b4c4809fc (diff)
downloadgenenetwork2-62d284be2576a40af44554f69290a78112815752.tar.gz
Merge pull request #393 from pjotrp/epysode
Remove eventlet
-rwxr-xr-xbin/genenetwork22
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/genenetwork2 b/bin/genenetwork2
index 759c71dc..3ae08e0a 100755
--- a/bin/genenetwork2
+++ b/bin/genenetwork2
@@ -209,7 +209,7 @@ if [ "$1" = '-gunicorn-prod' ] ; then
echo PYTHONPATH=$PYTHONPATH
if [ -z $SERVER_PORT ]; then echo "ERROR: Provide a SERVER_PORT" ; exit 1 ; fi
PID=$TMPDIR/gunicorn.$USER.pid
- cmd="--bind 0.0.0.0:$SERVER_PORT --pid $PID -k eventlet --workers 20 --keep-alive 6000 --max-requests 1000 --timeout 1200 wsgi"
+ cmd="--bind 0.0.0.0:$SERVER_PORT --pid $PID --workers 20 --keep-alive 6000 --max-requests 1000 --timeout 1200 wsgi"
echo RUNNING gunicorn $cmd
gunicorn $cmd
exit $?