File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
hugegraph-loader/src/test/java/org/apache/hugegraph/loader/test/functional Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff 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 );
You can’t perform that action at this time.
0 commit comments