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 aymeric.augustin
Recipients asvetlov, aymeric.augustin, yselivanov
Date 2018-09-30.16:35:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1538325338.68.0.545547206417.issue34852@psf.upfronthosting.co.za>
In-reply-to
Content
For now I will use the following hack:

    server.close()
    await server.wait_closed()

    # Workaround for wait_closed() not quite doing
    # what I want.
    await asyncio.sleep(0)

    # I believe that all accepted connections have reached
    # connection_made() at this point.
History
Date User Action Args
2018-09-30 16:35:38aymeric.augustinsetrecipients: + aymeric.augustin, asvetlov, yselivanov
2018-09-30 16:35:38aymeric.augustinsetmessageid: <1538325338.68.0.545547206417.issue34852@psf.upfronthosting.co.za>
2018-09-30 16:35:38aymeric.augustinlinkissue34852 messages
2018-09-30 16:35:38aymeric.augustincreate