From bc41bad2d6218b9695af82b7d5134f811ca63a78 Mon Sep 17 00:00:00 2001 From: Matt Billenstein Date: Wed, 4 Jun 2014 18:18:28 -0700 Subject: [PATCH] workers/async.py - handle_request takes listener_name instead of listener AFAICT - this should have been updated in 62f6fb2d --- gunicorn/workers/async.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/workers/async.py b/gunicorn/workers/async.py index 9351b999..d3cce5fc 100644 --- a/gunicorn/workers/async.py +++ b/gunicorn/workers/async.py @@ -44,7 +44,7 @@ class AsyncWorker(base.Worker): req = six.next(parser) if not req: break - self.handle_request(listener, req, client, addr) + self.handle_request(listener_name, req, client, addr) except http.errors.NoMoreData as e: self.log.debug("Ignored premature client disconnection. %s", e) except StopIteration as e: