Rely on close() to close sockets and stop using shutdown()

This commit is contained in:
Shane Harvey 2022-08-18 17:39:27 -07:00 committed by arp102
parent 4d3b5a52ae
commit 64e4f18dd0
3 changed files with 2 additions and 5 deletions

View File

@ -301,10 +301,9 @@ class KMIPProxy(object):
self.close()
def close(self):
# Shutdown and close the socket.
# Close the socket.
if self.socket:
try:
self.socket.shutdown(socket.SHUT_RDWR)
self.socket.close()
except (OSError, socket.error):
# Can be thrown if the socket is not actually connected to

View File

@ -362,12 +362,11 @@ class KmipServer(object):
self._logger.info("Shutting down server socket handler.")
try:
self._socket.shutdown(socket.SHUT_RDWR)
self._socket.close()
except Exception as e:
self._logger.exception(e)
raise exceptions.NetworkingError(
"Server failed to shutdown socket handler."
"Server failed to close socket handler."
)
if hasattr(self, "policy_monitor"):

View File

@ -113,7 +113,6 @@ class KmipSession(threading.Thread):
self._logger.info("Failure handling message loop")
self._logger.exception(e)
self._connection.shutdown(socket.SHUT_RDWR)
self._connection.close()
self._logger.info("Stopping session: {0}".format(self.name))