From e6fcdb8a2727b397388040d15af2435ddef3adad Mon Sep 17 00:00:00 2001 From: "randy.pierce" Date: Sun, 3 Mar 2024 18:45:17 -0700 Subject: [PATCH] handle new protocol for host field of credentials fils --- src/vxingest/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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