You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JCO-19 Support standard connection string parameter names
Motivation ---------- Standardize connection string parameter names across Columnar SDKs Modifications ------------- Throw if connection string parameter has uppercase letter. BuilderPropertySetter now applies a function that transforms each path component (for example, from lower_snake_case to lowerCamelCase). Remove the `tls_verify` alias in favor of standardizing on `security.disable_server_certificate_verification`. Change-Id: Id66d5bcae951898915638cfab60aede120f72b69 Reviewed-on: https://review.couchbase.org/c/couchbase-jvm-clients/+/217176 Tested-by: Build Bot <build@couchbase.com> Reviewed-by: David Nault <david.nault@couchbase.com>
Copy file name to clipboardExpand all lines: columnar-java-client/src/main/java/com/couchbase/columnar/client/java/Cluster.java
+33-21Lines changed: 33 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,6 @@
32
32
importjava.io.Closeable;
33
33
importjava.time.Duration;
34
34
importjava.util.Collections;
35
-
importjava.util.LinkedHashMap;
36
35
importjava.util.Map;
37
36
importjava.util.Optional;
38
37
importjava.util.concurrent.atomic.AtomicBoolean;
@@ -121,11 +120,13 @@ public static Cluster newInstance(
121
120
thrownewIllegalArgumentException("Invalid connection string; must start with secure scheme \"couchbases://\" (note the final 's') but got: " + redactUser(cs.original()));
0 commit comments