Skip to content

Commit d51b783

Browse files
authored
Merge pull request #216 from dearrudam/issue-366
Fix the ArangoDBDocumentManager implementation to shutdown the ArangoDB instance
2 parents 7d9059d + 3d89e9e commit d51b783

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.adoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ and this project adheres to https://semver.org/spec/v2.0.0.html[Semantic Version
1616
- Update package name convention to `org.jnosql.databases.[DATABASE].[LAYER]`
1717
- Integrate the mapping layer on this repository
1818

19+
=== Fixed
20+
21+
- Fix the ArangoDBDocumentManager implementation to shut down the ArangoDB instance
22+
1923
== [1.0.0-b6] - 2023-03-11
2024

2125
=== Changed

jnosql-arangodb/src/main/java/org/eclipse/jnosql/databases/arangodb/communication/DefaultArangoDBDocumentManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public <T> Stream<T> aql(String query, Class<T> typeClass) {
155155

156156
@Override
157157
public void close() {
158-
158+
arangoDB.shutdown();
159159
}
160160

161161

0 commit comments

Comments
 (0)