This repository was archived by the owner on Sep 17, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +4
-137
lines changed
src/main/java/com/arangodb/tinkerpop/gremlin/client Expand file tree Collapse file tree 4 files changed +4
-137
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ An implementation of the [Apache TinkerPop OLTP Provider](https://tinkerpop.apac
88
99This Provider supports:
1010* Apache TinkerPop 3.3
11- * ArangoDB 3.11+ (via ArangoDB Java Driver 7.16 .0).
11+ * ArangoDB 3.11+ (via ArangoDB Java Driver 7.17 .0).
1212
1313## ArangoDB
1414
Original file line number Diff line number Diff line change 2323
2424 <properties >
2525 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
26- <arangodb-java-driver .version>7.16 .0</arangodb-java-driver .version>
26+ <arangodb-java-driver .version>7.17 .0</arangodb-java-driver .version>
2727 <tinkerpop .version>3.3.11</tinkerpop .version>
2828 <junit .version>4.13.1</junit .version>
2929 <logback-classic .version>1.2.13</logback-classic .version>
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2020import java .util .regex .Pattern ;
2121import java .util .stream .Collectors ;
2222
23+ import com .arangodb .config .ArangoConfigProperties ;
2324import com .arangodb .entity .*;
2425import org .apache .tinkerpop .gremlin .structure .Direction ;
2526import org .apache .tinkerpop .gremlin .structure .Graph ;
@@ -186,7 +187,7 @@ public ArangoDBGraphClient(
186187 logger .info ("Initiating the ArangoDb Client" );
187188 this .graph = graph ;
188189 driver = new ArangoDB .Builder ()
189- .loadProperties (new ArangoConfigMap (properties ))
190+ .loadProperties (ArangoConfigProperties . fromProperties (properties ))
190191 .build ();
191192 db = driver .db (dbname );
192193 if (createDatabase ) {
You can’t perform that action at this time.
0 commit comments