File tree 4 files changed +4
-137
lines changed
src/main/java/com/arangodb/tinkerpop/gremlin/client
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
8
8
9
9
This Provider supports:
10
10
* 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).
12
12
13
13
## ArangoDB
14
14
Original file line number Diff line number Diff line change 23
23
24
24
<properties >
25
25
<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>
27
27
<tinkerpop .version>3.3.11</tinkerpop .version>
28
28
<junit .version>4.13.1</junit .version>
29
29
<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 20
20
import java .util .regex .Pattern ;
21
21
import java .util .stream .Collectors ;
22
22
23
+ import com .arangodb .config .ArangoConfigProperties ;
23
24
import com .arangodb .entity .*;
24
25
import org .apache .tinkerpop .gremlin .structure .Direction ;
25
26
import org .apache .tinkerpop .gremlin .structure .Graph ;
@@ -186,7 +187,7 @@ public ArangoDBGraphClient(
186
187
logger .info ("Initiating the ArangoDb Client" );
187
188
this .graph = graph ;
188
189
driver = new ArangoDB .Builder ()
189
- .loadProperties (new ArangoConfigMap (properties ))
190
+ .loadProperties (ArangoConfigProperties . fromProperties (properties ))
190
191
.build ();
191
192
db = driver .db (dbname );
192
193
if (createDatabase ) {
You can’t perform that action at this time.
0 commit comments