From 3b43838606479a26aca021a75fb3cfd3555f0b33 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Thu, 24 Aug 2023 11:22:19 -0700 Subject: [PATCH 1/2] notify-api-389 unpin gunicorn --- Pipfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Pipfile b/Pipfile index 7a634f10a..7f1477474 100644 --- a/Pipfile +++ b/Pipfile @@ -41,7 +41,8 @@ flask-marshmallow = "==0.14.0" flask-migrate = "==4.0.4" flask-redis = "==0.4.0" flask-sqlalchemy = "==3.0.5" -gunicorn = {version = "==20.1.0", extras = ["eventlet"], ref = "1299ea9e967a61ae2edebe191082fd169b864c64", git = "https://github.com/benoitc/gunicorn.git"} +gunicorn = "==21.2.0" +# gunicorn = {version = "==20.1.0", extras = ["eventlet"], ref = "1299ea9e967a61ae2edebe191082fd169b864c64", git = "https://github.com/benoitc/gunicorn.git"} iso8601 = "==2.0.0" itsdangerous = "==2.1.2" jsonschema = {version = "==4.17.3", extras = ["format"]} From c2370e5774072b50f3f553c8bc1e23dc9f2f63d2 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Fri, 25 Aug 2023 07:20:54 -0700 Subject: [PATCH 2/2] update gunicorn in pipfile to specify eventlets (green threads) --- Pipfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Pipfile b/Pipfile index 7f1477474..7c417de85 100644 --- a/Pipfile +++ b/Pipfile @@ -41,8 +41,7 @@ flask-marshmallow = "==0.14.0" flask-migrate = "==4.0.4" flask-redis = "==0.4.0" flask-sqlalchemy = "==3.0.5" -gunicorn = "==21.2.0" -# gunicorn = {version = "==20.1.0", extras = ["eventlet"], ref = "1299ea9e967a61ae2edebe191082fd169b864c64", git = "https://github.com/benoitc/gunicorn.git"} +gunicorn = {version = "==21.2.0", extras = ["eventlet"]} iso8601 = "==2.0.0" itsdangerous = "==2.1.2" jsonschema = {version = "==4.17.3", extras = ["format"]}