File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
src/main/java/com/arangodb/springframework/core/template Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
14
14
- Check ` Persistable#isNew `
15
15
- fixed ` ArangoOperations#upsert(Iterable<T>, UpsertStrategy) ` (issue #92 )
16
16
- Check ` Persistable#isNew `
17
+ - fixed ` ArangoOperations#getVersion() ` use configured database instead of _ system
17
18
18
19
## [ 2.2.0] - 2018-07-02
19
20
Original file line number Diff line number Diff line change @@ -294,7 +294,7 @@ public ArangoDB driver() {
294
294
public ArangoDBVersion getVersion () throws DataAccessException {
295
295
try {
296
296
if (version == null ) {
297
- version = arango .getVersion ();
297
+ version = db () .getVersion ();
298
298
}
299
299
return version ;
300
300
} catch (final ArangoDBException e ) {
You can’t perform that action at this time.
0 commit comments