Skip to content

Commit 5f09768

Browse files
authored
docs: change connection string (#318)
1 parent 8ca175b commit 5f09768

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/io/kurrent/dbclient/KurrentDBClientSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import java.util.Set;
88

99
/**
10-
* Gathers all the settings related to a gRPC client with an KurrentDB database.
10+
* Gathers all the settings related to a gRPC client with a KurrentDB database.
1111
* <i>EventStoreDBClientSettings}</i> can only be created when parsing a connection string.
1212
*
1313
* <i>KurrentDBClientSettings</i> supports a wide range of settings. If a setting is not mentioned in the connection

src/test/java/io/kurrent/dbclient/samples/authentication/UserCertificate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public class UserCertificate {
88
private static void tracing() {
99
// region client-with-user-certificates
1010
KurrentDBClientSettings settings = KurrentDBConnectionString
11-
.parseOrThrow("esdb://admin:changeit@{endpoint}?tls=true&userCertFile={pathToCaFile}&userKeyFile={pathToKeyFile}");
11+
.parseOrThrow("kurrentdb://admin:changeit@{endpoint}?tls=true&userCertFile={pathToCaFile}&userKeyFile={pathToKeyFile}");
1212
KurrentDBClient client = KurrentDBClient.create(settings);
1313
// endregion client-with-user-certificates
1414
}

0 commit comments

Comments
 (0)