Ronald Oussoren <ronaldousso...@mac.com> added the comment:

What's the script used, is it the script in the reddit thread? 

The reddit thread mentions a change to the script that might help:

     return [await r.json() for r in responses]

To:
     return await asyncio.gather(*(r.json() for r in responses))

Does that remove the error?

----------
nosy: +ronaldoussoren

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue42690>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to