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 mdk
Recipients asvetlov, kumaraditya, mdk, yselivanov
Date 2022-01-12.17:17:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1642007860.55.0.361382195292.issue46318@roundup.psfhosted.org>
In-reply-to
Content
I don't know if it's related but _SSLPipe._shutdown_cb looks never called, in:

    self._sslobj.unwrap()
    self._sslobj = None
    self._state = _UNWRAPPED

    if self._shutdown_cb:
        self._shutdown_cb()

the unwrap() call seems to always raise (The operation did not complete (read) (_ssl.c:2756)), thus never calling `self._shutdown_cb()`.
History
Date User Action Args
2022-01-12 17:17:40mdksetrecipients: + mdk, asvetlov, yselivanov, kumaraditya
2022-01-12 17:17:40mdksetmessageid: <1642007860.55.0.361382195292.issue46318@roundup.psfhosted.org>
2022-01-12 17:17:40mdklinkissue46318 messages
2022-01-12 17:17:40mdkcreate