From 59ae27c064fa2a8cc58917c6b1d12195329906a4 Mon Sep 17 00:00:00 2001 From: Costantino Perciante Date: Mon, 11 Jul 2016 08:54:38 +0000 Subject: [PATCH] closed connection to cassandra on servlet destroy, moved to version 2.0.1 git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portlets/user/user-statistics@130216 82a268e6-3cf1-43bd-a215-b396298e98cf --- .classpath | 6 +++--- pom.xml | 2 +- .../server/UserStatisticsServiceImpl.java | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.classpath b/.classpath index ba34ce9..3db4410 100644 --- a/.classpath +++ b/.classpath @@ -1,6 +1,6 @@ - + @@ -29,10 +29,10 @@ - + - + diff --git a/pom.xml b/pom.xml index 9781fc8..1761345 100644 --- a/pom.xml +++ b/pom.xml @@ -13,7 +13,7 @@ org.gcube.portlets.user user-statistics war - 2.0.0-SNAPSHOT + 2.0.1-SNAPSHOT User statistics portlet User statistics portlet shows main user's statistics. diff --git a/src/main/java/org/gcube/portlet/user/userstatisticsportlet/server/UserStatisticsServiceImpl.java b/src/main/java/org/gcube/portlet/user/userstatisticsportlet/server/UserStatisticsServiceImpl.java index d056ff8..5ed5daa 100644 --- a/src/main/java/org/gcube/portlet/user/userstatisticsportlet/server/UserStatisticsServiceImpl.java +++ b/src/main/java/org/gcube/portlet/user/userstatisticsportlet/server/UserStatisticsServiceImpl.java @@ -75,7 +75,7 @@ public class UserStatisticsServiceImpl extends RemoteServiceServlet implements U @Override public void destroy(){ // shutting down connection to Cassandra - _log.debug("Closing connection to Cassandra"); + _log.info("Closing connection to Cassandra"); store.closeConnection(); }