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.
1 parent 5fe92e7 commit 8419f64Copy full SHA for 8419f64
driver/src/test/java/com/arangodb/ArangoSslTest.java
@@ -75,6 +75,7 @@ void connect(Protocol protocol) throws Exception {
75
final ArangoDB arangoDB = new ArangoDB.Builder()
76
.useProtocol(protocol)
77
.host("localhost", 8529)
78
+ .password("test")
79
.useSsl(true)
80
.sslContext(sc).build();
81
final ArangoDBVersion version = arangoDB.getVersion();
driver/src/test/java/com/arangodb/async/example/ssl/SslExampleTest.java
@@ -69,6 +69,7 @@ void connect() throws Exception {
69
70
final ArangoDBAsync arangoDB = new ArangoDBAsync.Builder()
71
72
73
74
final ArangoDBVersion version = arangoDB.getVersion().get();
0 commit comments