diff --git a/src/vxingest/main.py b/src/vxingest/main.py index f30444f6..473f1fb0 100644 --- a/src/vxingest/main.py +++ b/src/vxingest/main.py @@ -288,7 +288,7 @@ def connect_cb(creds: dict[str, str]) -> Cluster: while _attempts < 3: try: cluster = Cluster( - f"couchbase://{creds['cb_host']}", + f"{creds['cb_host']}", ClusterOptions(auth, timeout_options=timeout_config), # type: ignore ) break