This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ronaldoussoren
Recipients JasperTecHK, asvetlov, ronaldoussoren, yselivanov
Date 2020-12-28.10:07:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1609150021.14.0.860755876462.issue42690@roundup.psfhosted.org>
In-reply-to
Content
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?
History
Date User Action Args
2020-12-28 10:07:01ronaldoussorensetrecipients: + ronaldoussoren, asvetlov, yselivanov, JasperTecHK
2020-12-28 10:07:01ronaldoussorensetmessageid: <1609150021.14.0.860755876462.issue42690@roundup.psfhosted.org>
2020-12-28 10:07:01ronaldoussorenlinkissue42690 messages
2020-12-28 10:07:01ronaldoussorencreate