Skip to content

Commit

Permalink
Actually use eventlet in our web process
Browse files Browse the repository at this point in the history
  • Loading branch information
dstufft committed Apr 22, 2016
1 parent 409df57 commit 7c8428f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
web: bin/redis-tls bin/fastly-config && bin/redis-tls gunicorn -b 0.0.0.0:$PORT -n warehouse -k gevent --preload warehouse.wsgi
web: bin/redis-tls bin/fastly-config && bin/redis-tls gunicorn -b 0.0.0.0:$PORT -n warehouse -k eventlet --preload warehouse.wsgi
worker: bin/redis-tls celery -A warehouse worker -l info
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ app:
web:
extends:
service: app
command: gunicorn -b 0.0.0.0:8000 -n warehouse -k gevent --reload warehouse.wsgi
command: gunicorn -b 0.0.0.0:8000 -n warehouse -k eventlet --reload warehouse.wsgi
environment:
PORT: 8000
ports:
Expand Down

0 comments on commit 7c8428f

Please sign in to comment.