aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorGravatar jesopo2020-01-06 17:17:49 +0000
committerGravatar jesopo2020-01-06 17:17:49 +0000
commit366a7bf326c078eb935196195908c1ba90f13539 (patch)
tree342c31469bf232dc0ef728499fb5382cc64e465b /src/utils
parentexplicitly .close() task in http.request_many() (diff)
signature
Revert "explicitly .close() task in http.request_many()"
This reverts commit 7478d62b77a7c7637000670d1c2ed22b1b403745.
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/http.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/utils/http.py b/src/utils/http.py
index 7225f41e..11d63797 100644
--- a/src/utils/http.py
+++ b/src/utils/http.py
@@ -258,7 +258,6 @@ def request_many(requests: typing.List[Request]) -> typing.Dict[str, Response]:
task = asyncio.wait(awaits, loop=loop, timeout=5)
loop.run_until_complete(task)
loop.close()
- task.close()
return responses