File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ Thin Mode Changes
18
18
#) Internal changes to improve handling of multiple address and description
19
19
lists in full connect descriptors.
20
20
#) Fixed bug in handling database response in certain unusual circumstances.
21
+ #) Fixed bug in handling exceptions raised during connection establishment.
21
22
22
23
Thick Mode Changes
23
24
++++++++++++++++++
Original file line number Diff line number Diff line change @@ -340,7 +340,7 @@ cdef class Protocol:
340
340
Forces the connection closed. This is used when an unrecoverable error
341
341
has taken place.
342
342
"""
343
- if self ._socket is not None :
343
+ if self ._socket is not None and self ._read_buf._socket is not None :
344
344
sock = self ._socket
345
345
if DEBUG_PACKETS:
346
346
now = datetime.datetime.now()
You can’t perform that action at this time.
0 commit comments