diff --git a/requests/async.py b/requests/async.py index 36f6c5a9..53aa8418 100644 --- a/requests/async.py +++ b/requests/async.py @@ -52,7 +52,7 @@ def send(r, pool=None): and can hence limit concurrency.""" if pool != None: - print pool.full() + return pool.spawn(r.send) return gevent.spawn(r.send)