This repository was archived by the owner on Dec 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +10
-7
lines changed
src/main/java/com/baidu/hugegraph/studio Expand file tree Collapse file tree 5 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 77 <groupId >com.baidu.hugegraph</groupId >
88 <artifactId >hugegraph-studio</artifactId >
99 <packaging >pom</packaging >
10- <version >0.10 .0</version >
10+ <version >0.11 .0</version >
1111 <modules >
1212 <module >studio-api</module >
1313 <module >studio-dist</module >
2525 <compiler .target>1.8</compiler .target>
2626 <log4j2 .version>2.8.2</log4j2 .version>
2727 <junit .version>4.12</junit .version>
28- <hugegraph .client.version>1.8.0 </hugegraph .client.version>
28+ <hugegraph .client.version>1.9.1 </hugegraph .client.version>
2929 <guava .version>21.0</guava .version>
3030 <commons .lang3.version>3.6</commons .lang3.version>
3131 <tomcat .version>8.5.40</tomcat .version>
Original file line number Diff line number Diff line change 55 <parent >
66 <artifactId >hugegraph-studio</artifactId >
77 <groupId >com.baidu.hugegraph</groupId >
8- <version >0.10 .0</version >
8+ <version >0.11 .0</version >
99 </parent >
1010 <modelVersion >4.0.0</modelVersion >
1111 <artifactId >studio-api</artifactId >
Original file line number Diff line number Diff line change 2020package com .baidu .hugegraph .studio .board ;
2121
2222import com .baidu .hugegraph .driver .HugeClient ;
23+ import com .baidu .hugegraph .driver .HugeClientBuilder ;
2324import com .baidu .hugegraph .studio .config .StudioApiConfig ;
2425
2526public final class HugeClientWrapper {
@@ -40,7 +41,10 @@ public static HugeClient get(StudioApiConfig config) {
4041 private HugeClientWrapper () {}
4142
4243 private static HugeClient newHugeClient (StudioApiConfig config ) {
43- return new HugeClient (config .getGraphServerUrl (), config .getGraphName (),
44- config .getClientTimeout ());
44+ HugeClientBuilder builder ;
45+ builder = new HugeClientBuilder (config .getGraphServerUrl (),
46+ config .getGraphName ());
47+ builder .configTimeout (config .getClientTimeout ());
48+ return builder .build ();
4549 }
4650}
Original file line number Diff line number Diff line change @@ -140,7 +140,6 @@ public static StudioApiOptions instance() {
140140 "The suffixes of gremlin statement which should be " +
141141 "appended limit()" ,
142142 disallowEmpty (),
143- String .class ,
144143 ".V()" , ".E()"
145144 );
146145
Original file line number Diff line number Diff line change 55 <parent >
66 <artifactId >hugegraph-studio</artifactId >
77 <groupId >com.baidu.hugegraph</groupId >
8- <version >0.10 .0</version >
8+ <version >0.11 .0</version >
99 </parent >
1010 <modelVersion >4.0.0</modelVersion >
1111
You can’t perform that action at this time.
0 commit comments