Skip to content

Commit fc432d2

Browse files
author
taras
committed
Fix tests
1 parent 6a1a164 commit fc432d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

uvloop/sslproto.pyx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ cdef class SSLProtocol:
561561
new_MethodHandle(self._loop,
562562
"SSLProtocol._do_read",
563563
<method_t> self._do_read,
564-
None,
564+
None, # current context is good
565565
self))
566566

567567
# Shutdown flow
@@ -761,7 +761,7 @@ cdef class SSLProtocol:
761761
new_MethodHandle(self._loop,
762762
"SSLProtocol._do_read",
763763
<method_t>self._do_read,
764-
None,
764+
None, # current context is good
765765
self))
766766
except ssl_SSLAgainErrors as exc:
767767
pass

0 commit comments

Comments
 (0)