Skip to content

Commit c42df94

Browse files
authored
Improvement: Use shutdown() Before close() in connection.py (#3567)
1 parent ee54d2a commit c42df94

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

redis/connection.py

+8
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,10 @@ def _connect(self):
764764
except OSError as _:
765765
err = _
766766
if sock is not None:
767+
try:
768+
sock.shutdown(socket.SHUT_RDWR) # ensure a clean close
769+
except OSError:
770+
pass
767771
sock.close()
768772

769773
if err is not None:
@@ -1179,6 +1183,10 @@ def _connect(self):
11791183
sock.connect(self.path)
11801184
except OSError:
11811185
# Prevent ResourceWarnings for unclosed sockets.
1186+
try:
1187+
sock.shutdown(socket.SHUT_RDWR) # ensure a clean close
1188+
except OSError:
1189+
pass
11821190
sock.close()
11831191
raise
11841192
sock.settimeout(self.socket_timeout)

0 commit comments

Comments
 (0)