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)