From de3792b0114d5034cd0a3fb4317e8c699590f426 Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Thu, 21 Jan 2010 13:35:54 +0100 Subject: [PATCH] oups we should really close on exec the client --- gunicorn/worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/worker.py b/gunicorn/worker.py index 8422a934..e91b00da 100644 --- a/gunicorn/worker.py +++ b/gunicorn/worker.py @@ -124,7 +124,7 @@ class Worker(object): self._fchmod(spinner) def handle(self, client, addr): - #util.close_on_exec(client) + util.close_on_exec(client) try: req = http.HttpRequest(client, addr, self.address) response = self.app(req.read(), req.start_response)