Skip to content

Commit c233278

Browse files
authored
Bug Fix: Flask and Celery Docker Images
Modified: requirements_2.7.txt Change: Downgrade `gevent` to `1.2.2` I was having issues running the Flask and Celery containers. The issue was due to installing `gevent` version `1.4.0` which is not supported by Python 2 as it can be seen in the table at: https://pypi.org/project/gevent/#description After using the supported `gevent` version the issue was solved. I'm running the project on ubuntu server v22.04
1 parent 314fd8e commit c233278

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kuiper/requirements_2.7.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ python-registry==1.0.4
2929
python-evtx==0.6.1
3030
redis==3.3.11
3131
gunicorn==19.4.5
32-
gevent==1.4.0
32+
gevent==1.2.2
3333
psutil==5.7.0
3434
libesedb-python==20210424
3535
python-ldap==3.3.1
36-
openpyxl==2.6.4
36+
openpyxl==2.6.4

0 commit comments

Comments
 (0)