From aa3d15e55090fa1c0519d5a4f23e2a7c850a7d99 Mon Sep 17 00:00:00 2001 From: Alessandro Pieve Date: Mon, 6 Feb 2017 16:57:44 +0000 Subject: [PATCH] git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-publishing/document-store-lib-couchdb@142292 82a268e6-3cf1-43bd-a215-b396298e98cf --- .../gcube/documentstore/persistence/PersistenceCouchDB.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/org/gcube/documentstore/persistence/PersistenceCouchDB.java b/src/main/java/org/gcube/documentstore/persistence/PersistenceCouchDB.java index 02253dc..fc5271e 100644 --- a/src/main/java/org/gcube/documentstore/persistence/PersistenceCouchDB.java +++ b/src/main/java/org/gcube/documentstore/persistence/PersistenceCouchDB.java @@ -56,6 +56,9 @@ public class PersistenceCouchDB extends PersistenceBackend { protected void createItem(JsonNode node, String id) throws Exception { httpCouchClient.put(node.toString(), id); } + + @Override + protected void closeConnection() throws Exception {} /** * {@inheritDoc} @@ -79,5 +82,7 @@ public class PersistenceCouchDB extends PersistenceBackend { Record record = RecordUtility.getRecord(result); return record; } + + }