From 77a8cb66e652820f324d8cdac917526bd8e7fcd2 Mon Sep 17 00:00:00 2001 From: benoitc Date: Thu, 10 Jun 2010 22:10:22 +0200 Subject: [PATCH] there's still a bug upstream about dns patching so don't patch it for now. --- gunicorn/workers/ggevent2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/workers/ggevent2.py b/gunicorn/workers/ggevent2.py index 2491e675..8743a03e 100644 --- a/gunicorn/workers/ggevent2.py +++ b/gunicorn/workers/ggevent2.py @@ -37,7 +37,7 @@ class GEvent2Worker(Worker): @classmethod def setup(cls): from gevent import monkey - monkey.patch_all() + monkey.patch_all(dns=False) def handle_request(self, req): self.pool.spawn(self.handle, req)