From 5038c3785a95650881579d61bcbb6b14a1a97916 Mon Sep 17 00:00:00 2001 From: benoitc Date: Wed, 12 May 2010 17:54:37 +0200 Subject: [PATCH] dns monkey patch is broken currently in gevent. Waiting upstream fix it, don't patch it. --- gunicorn/workers/ggevent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/workers/ggevent.py b/gunicorn/workers/ggevent.py index 91968e24..8847555d 100644 --- a/gunicorn/workers/ggevent.py +++ b/gunicorn/workers/ggevent.py @@ -20,7 +20,7 @@ class GEventWorker(AsyncWorker): @classmethod def setup(cls): from gevent import monkey - monkey.patch_all() + monkey.patch_all(dns=False) def keepalive_request(self, client, addr): req = None