Skip to content

Commit 2f23ebb

Browse files
committed
Removed async workers
1 parent 9d31cb1 commit 2f23ebb

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ENV APP_LOG_LEVEL="info"
99
ENV APP_PORT="8000"
1010
ENV APPLICATION_DIR="/srv/application"
1111

12-
RUN source /srv/virtenv/bin/activate && pip install gunicorn==19.6.0 greenlet eventlet
12+
RUN source /srv/virtenv/bin/activate && pip install gunicorn==19.6.0
1313

1414
EXPOSE $APP_PORT
1515
ADD start-gunicorn.sh /home/app/start-gunicorn.sh

start-gunicorn.sh

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ gunicorn $APP_MODULE \
1414
--name $APP_PROCESS_NAME \
1515
--bind=0.0.0.0:$APP_PORT \
1616
--workers=$APP_WORKERS_COUNT \
17-
--worker-class=eventlet
1817
--timeout=$TIMEOUT \
1918
--log-level=$APP_LOG_LEVEL \
2019
--log-file="-" \

0 commit comments

Comments
 (0)