Skip to content

Commit

Permalink
handle new protocol for host field of credentials fils (#345)
Browse files Browse the repository at this point in the history
Had to make this change and merge it because data was failing to process
on ascend-test2
  • Loading branch information
randytpierce authored Mar 4, 2024
2 parents 5d72b83 + e6fcdb8 commit b731de2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vxingest/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b731de2

Please sign in to comment.