SSLTransport.abort() should mark the transport as closed

This commit is contained in:
Yury Selivanov 2018-06-04 18:43:09 -04:00
parent c3aeff2a25
commit ba25d8be86
1 changed files with 1 additions and 0 deletions

View File

@ -383,6 +383,7 @@ class _SSLProtocolTransport(aio_FlowControlMixin, aio_Transport):
called with None as its argument.
"""
self._ssl_protocol._abort()
self._closed = True
class SSLProtocol(object):