From 78295e3d49e455fa435b8189bd583bb9d012b7a3 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Wed, 24 Sep 2025 08:34:06 -0700 Subject: [PATCH] monkeypatch gevent --- run_celery.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/run_celery.py b/run_celery.py index 9f0c4e704..e818f9c12 100644 --- a/run_celery.py +++ b/run_celery.py @@ -1,4 +1,7 @@ #!/usr/bin/env python +from gevent import monkey + +monkey.patch_all() from flask import Flask