Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions aperturedb/Connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,10 +416,8 @@ def _connect(self):
f"Refer to the documentation for more information: {SETUP_URL}" + os.linesep + \
f"Alternatively, SSL can be disabled by setting verify_hostname=False or use_ssl=False (not recommended)" + \
os.linesep
except ssl.SSLError as e:
except ssl.SSLError:
logger.exception(f"Error wrapping socket.")
self.conn.close()
self.connected = False
raise

except FileNotFoundError as e:
Expand Down
Loading