Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,9 @@ dmypy.json
# Pyre type checker
.pyre/

# Allow wheels from dist for docker builds
!dist/*.whl

# VSCode
.vscode/

Expand Down
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
2 changes: 1 addition & 1 deletion aperturedb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import signal
import sys

__version__ = "0.4.56"
__version__ = "0.4.57"

logger = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion test/adb_timing_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
os.system(command)
diff = datetime.now() - start
print(diff)
assert diff.total_seconds() <= 1.5, f"Command {command} took too long"
assert diff.total_seconds() <= 2.5, f"Command {command} took too long"
Loading