We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 25b0945 + 190bf76 commit a071be2Copy full SHA for a071be2
src/main/java/trycb/config/CouchbaseConfiguration.java
@@ -16,6 +16,13 @@ public class CouchbaseConfiguration extends AbstractCouchbaseConfiguration {
16
17
@Override
18
public String getConnectionString() {
19
+ // To connect to capella:
20
+ // - with ssl certificate validation:
21
+ // return "couchbases://cb.jnym5s9gv4ealbe.cloud.couchbase.com"
22
+ // - without ssl validation:
23
+ // return "couchbases://cb.jnym5s9gv4ealbe.cloud.couchbase.com?tls=no_verify"
24
+ // (replace cb.jnym5s9gv4ealbe.cloud.couchbase.com with your Capella cluster address)
25
+ //
26
return "couchbase://127.0.0.1";
27
}
28
0 commit comments