Skip to content

Commit 1c6fa16

Browse files
rebuild loader-ci
1 parent 05b6e79 commit 1c6fa16

File tree

1 file changed

+3
-1
lines changed
  • hugegraph-loader/src/test/java/org/apache/hugegraph/loader/test/functional

1 file changed

+3
-1
lines changed

hugegraph-loader/src/test/java/org/apache/hugegraph/loader/test/functional/FileLoadTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3098,6 +3098,7 @@ public void testHttpsClientValueMapping() {
30983098
HugeClient httpsClient = null;
30993099
try {
31003100
httpsClient = HugeClient.builder(HTTPS_URL, GRAPH)
3101+
.configUser("admin", "pa")
31013102
.configSSL(TRUST_STORE_PATH, "hugegraph")
31023103
.build();
31033104
List<Vertex> vertices = httpsClient.graph().listVertices();
@@ -3135,7 +3136,8 @@ public void testHttpsHolderClientValueMapping() {
31353136
options.protocol = HTTPS_PROTOCOL;
31363137
options.trustStoreFile = TRUST_STORE_PATH;
31373138
options.trustStoreToken = "hugegraph";
3138-
3139+
options.username = "admin";
3140+
options.password = "pa";
31393141
HugeClient httpsClient = null;
31403142
try {
31413143
httpsClient = HugeClientHolder.create(options);

0 commit comments

Comments
 (0)