feat(python)!: async-sync feature parity on Connections (#1905)

Closes #1791
Closes #1764
Closes #1897 (Makes this unnecessary)

BREAKING CHANGE: when using azure connection string `az://...` the call
to connect will fail if the azure storage credentials are not set. this
is breaking from the previous behaviour where the call would fail after
connect, when user invokes methods on the connection.
This commit is contained in:
Bert
2024-12-05 14:54:39 -05:00
committed by GitHub
parent 5f261cf2d8
commit 239f725b32
7 changed files with 83 additions and 66 deletions

View File

@@ -30,6 +30,7 @@ class MockDB:
def __init__(self, uri: Path):
self.uri = str(uri)
self.read_consistency_interval = None
self.storage_options = None
@functools.cached_property
def is_managed_remote(self) -> bool: