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 christian.heimes
Recipients christian.heimes, gvanrossum, ovex, vstinner, yselivanov
Date 2017-09-07.14:42:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1504795329.22.0.341363999421.issue25292@psf.upfronthosting.co.za>
In-reply-to
Content
This looks like a problem in asyncio. When the client closes the writer, the TLS and TCP connections are shut down. The server's writer still accept data although it is not written to the underlying ssl object:

(Pdb) writer.transport._ssl_protocol._extra['ssl_object'].pending()
0
(Pdb) writer.transport._ssl_protocol._in_shutdown
True
(Pdb) len(writer.transport._ssl_protocol._write_backlog)
2
History
Date User Action Args
2017-09-07 14:42:09christian.heimessetrecipients: + christian.heimes, gvanrossum, vstinner, yselivanov, ovex
2017-09-07 14:42:09christian.heimessetmessageid: <1504795329.22.0.341363999421.issue25292@psf.upfronthosting.co.za>
2017-09-07 14:42:09christian.heimeslinkissue25292 messages
2017-09-07 14:42:09christian.heimescreate