Skip to content
This repository was archived by the owner on Mar 27, 2023. It is now read-only.

Commit 620a270

Browse files
committed
changed event type from sync to gevent in gunicorn settings
1 parent 5f3ce16 commit 620a270

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

backend/requirements/base.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ djangorestframework==3.11.0
1717
djangorestframework_simplejwt==4.4.0
1818
django-debug-toolbar==2.2
1919

20+
gevent==20.6.2
2021

2122
# Python Social Auth
2223

backend/scripts/prod/start_prod.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
gunicorn -t 300 -b 0.0.0.0:8000 backend.wsgi
3+
gunicorn -t 300 -k gevent -w 4 -b 0.0.0.0:8000 backend.wsgi

0 commit comments

Comments
 (0)