annotated tag v3.0-alpha-3.1 created (now a0c7559)
This is an automated email from the git hooks/post-receive script. New change to annotated tag v3.0-alpha-3.1 in repository topia. See https://gitlab.nuiton.org/nuiton/topia.git at a0c7559 (tag) tagging 31c94c613f2c61834bfadcf921df8f905c2ed74e (commit) replaces topia-3.0-alpha-3 tagged by Tony Chemit on Thu Oct 31 22:50:14 2013 +0000 - Log ----------------------------------------------------------------- fix scm ----------------------------------------------------------------------- This annotated tag includes the following new commits: new 0fb787c [maven-release-plugin] copy for tag topia-3.0-alpha-3 new 69d66c5 to fix #2869 new f09d8bf fixes #2882: Hibernate factory is closed by a child context new 22adfa1 prepare version to release new 76a9054 fix scm info new 62f8341 [maven-release-plugin] prepare release topia-3.0-alpha-3.1 new 66d682d [maven-release-plugin] copy for tag topia-3.0-alpha-3.1 new 31c94c6 fix scm The 8 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 31c94c613f2c61834bfadcf921df8f905c2ed74e Author: Tony Chemit <chemit@codelutin.com> Date: Thu Oct 31 22:50:14 2013 +0000 fix scm commit 66d682dd51b371ded5cdca29aecdef879b364e90 Author: Maven Release Manager <???> Date: Thu Oct 31 22:42:55 2013 +0000 [maven-release-plugin] copy for tag topia-3.0-alpha-3.1 commit 62f834149490cdf8e2aa863da1cfeaaf6ead7822 Author: Maven Release Manager <???> Date: Thu Oct 31 22:42:53 2013 +0000 [maven-release-plugin] prepare release topia-3.0-alpha-3.1 commit 76a9054cb3a72ca5f0076614d5c2d33e1a203739 Author: Tony Chemit <chemit@codelutin.com> Date: Thu Oct 31 22:40:14 2013 +0000 fix scm info commit 22adfa1eac7a286d7f285e7fa6fb8ff8140a5966 Author: Tony Chemit <chemit@codelutin.com> Date: Thu Oct 31 22:36:52 2013 +0000 prepare version to release commit f09d8bfcb3e35b0e53aca696c22beed08e462c6b Author: Tony Chemit <chemit@codelutin.com> Date: Thu Oct 31 22:35:50 2013 +0000 fixes #2882: Hibernate factory is closed by a child context commit 69d66c54a170a876d046a681317fe90a9e8b1939 Author: Tony Chemit <chemit@codelutin.com> Date: Thu Oct 31 22:33:17 2013 +0000 to fix #2869 commit 0fb787cedefe6849297cef24e23b920657487855 Author: Maven Release Manager <???> Date: Tue Sep 17 16:55:49 2013 +0000 [maven-release-plugin] copy for tag topia-3.0-alpha-3 -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
This is an automated email from the git hooks/post-receive script. New commit to annotated tag v3.0-alpha-3.1 in repository topia. See https://gitlab.nuiton.org/nuiton/topia.git commit 69d66c54a170a876d046a681317fe90a9e8b1939 Author: Tony Chemit <chemit@codelutin.com> Date: Thu Oct 31 22:33:17 2013 +0000 to fix #2869 -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
This is an automated email from the git hooks/post-receive script. New commit to annotated tag v3.0-alpha-3.1 in repository topia. See https://gitlab.nuiton.org/nuiton/topia.git commit f09d8bfcb3e35b0e53aca696c22beed08e462c6b Author: Tony Chemit <chemit@codelutin.com> Date: Thu Oct 31 22:35:50 2013 +0000 fixes #2882: Hibernate factory is closed by a child context --- .../topia/framework/AbstractTopiaContext.java | 30 ++++++++++++++++------ .../topia/framework/TopiaConnectionProvider.java | 4 +-- 2 files changed, 24 insertions(+), 10 deletions(-) diff --git a/topia-persistence/src/main/java/org/nuiton/topia/framework/AbstractTopiaContext.java b/topia-persistence/src/main/java/org/nuiton/topia/framework/AbstractTopiaContext.java index a0ee2c9..8843682 100644 --- a/topia-persistence/src/main/java/org/nuiton/topia/framework/AbstractTopiaContext.java +++ b/topia-persistence/src/main/java/org/nuiton/topia/framework/AbstractTopiaContext.java @@ -904,7 +904,7 @@ public class AbstractTopiaContext implements TopiaContext, TopiaContextImplement } } - // on se desenregistre du context pere et on ferme les connexions si + // on se desenregistre du context pere et on ferme les connexions si // on est pas le root context if (!equals(getRootContext())) { closed = true; @@ -927,16 +927,25 @@ public class AbstractTopiaContext implements TopiaContext, TopiaContextImplement } /** - * Pour le context root on ferme tous les fils, et la factory hibernate. + * tchemit 2013-01-31 : do nothing on finalize we MUST control cleaning + * of resources. + * + * //Pour le context root on ferme tous les fils, et la factory hibernate. */ @Override protected void finalize() throws Throwable { - if (hibernateFactory != null) { - closeContext(); - hibernateFactory.close(); - closed = true; - log.debug("TopiaContext finalized"); +// if (hibernateFactory != null) { +// closeContext(); +// hibernateFactory.close(); +// closed = true; +// log.debug("TopiaContext finalized"); +// } + if (!closed) { + + // means resource was not well closed, can't accept this! + throw new TopiaException("TopiaContext "+this+" was not closed!"); } + super.finalize(); } @Override @@ -1264,7 +1273,12 @@ public class AbstractTopiaContext implements TopiaContext, TopiaContextImplement Query query = tx.getHibernate().createSQLQuery(sql); query.executeUpdate(); tx.closeContext(); - root.finalize(); + // Do not invoke finalize here, we are not garbage collector... + // duplicate then the previous code of the finalize method + root.closeContext(); + root.hibernateFactory.close(); + root.closed = true; +// root.finalize(); } catch (Throwable eee) { throw new TopiaException( String.format("Error %s on clear operation", eee.getMessage()), eee); diff --git a/topia-persistence/src/main/java/org/nuiton/topia/framework/TopiaConnectionProvider.java b/topia-persistence/src/main/java/org/nuiton/topia/framework/TopiaConnectionProvider.java index c8918dc..76c7e3a 100644 --- a/topia-persistence/src/main/java/org/nuiton/topia/framework/TopiaConnectionProvider.java +++ b/topia-persistence/src/main/java/org/nuiton/topia/framework/TopiaConnectionProvider.java @@ -290,8 +290,8 @@ public class TopiaConnectionProvider implements ConnectionProvider, Configurable @Override public void stop() { - if (log.isDebugEnabled()) { - log.debug("cleaning up connection pool: " + url); + if (log.isInfoEnabled()) { + log.info("cleaning up connection pool: " + url); } for (Connection connection : pool) { -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
This is an automated email from the git hooks/post-receive script. New commit to annotated tag v3.0-alpha-3.1 in repository topia. See https://gitlab.nuiton.org/nuiton/topia.git commit 22adfa1eac7a286d7f285e7fa6fb8ff8140a5966 Author: Tony Chemit <chemit@codelutin.com> Date: Thu Oct 31 22:36:52 2013 +0000 prepare version to release --- pom.xml | 2 +- topia-persistence/pom.xml | 2 +- topia-service-migration/pom.xml | 2 +- topia-service-replication/pom.xml | 2 +- topia-service-security/pom.xml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index b5628f1..dcef925 100644 --- a/pom.xml +++ b/pom.xml @@ -33,7 +33,7 @@ </parent> <artifactId>topia</artifactId> - <version>3.0-alpha-3</version> + <version>3.0-alpha-3.1-SNAPSHOT</version> <packaging>pom</packaging> <name>ToPIA</name> diff --git a/topia-persistence/pom.xml b/topia-persistence/pom.xml index bccb9b4..3d7112d 100644 --- a/topia-persistence/pom.xml +++ b/topia-persistence/pom.xml @@ -30,7 +30,7 @@ <parent> <groupId>org.nuiton</groupId> <artifactId>topia</artifactId> - <version>3.0-alpha-3</version> + <version>3.0-alpha-3.1-SNAPSHOT</version> </parent> <groupId>org.nuiton.topia</groupId> diff --git a/topia-service-migration/pom.xml b/topia-service-migration/pom.xml index a104af4..1ff1fd5 100644 --- a/topia-service-migration/pom.xml +++ b/topia-service-migration/pom.xml @@ -30,7 +30,7 @@ <parent> <groupId>org.nuiton</groupId> <artifactId>topia</artifactId> - <version>3.0-alpha-3</version> + <version>3.0-alpha-3.1-SNAPSHOT</version> </parent> <groupId>org.nuiton.topia</groupId> diff --git a/topia-service-replication/pom.xml b/topia-service-replication/pom.xml index d812eb6..9649a53 100644 --- a/topia-service-replication/pom.xml +++ b/topia-service-replication/pom.xml @@ -30,7 +30,7 @@ <parent> <groupId>org.nuiton</groupId> <artifactId>topia</artifactId> - <version>3.0-alpha-3</version> + <version>3.0-alpha-3.1-SNAPSHOT</version> </parent> <groupId>org.nuiton.topia</groupId> diff --git a/topia-service-security/pom.xml b/topia-service-security/pom.xml index 38c3cc9..11fda77 100644 --- a/topia-service-security/pom.xml +++ b/topia-service-security/pom.xml @@ -30,7 +30,7 @@ <parent> <groupId>org.nuiton</groupId> <artifactId>topia</artifactId> - <version>3.0-alpha-3</version> + <version>3.0-alpha-3.1-SNAPSHOT</version> </parent> <groupId>org.nuiton.topia</groupId> -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
This is an automated email from the git hooks/post-receive script. New commit to annotated tag v3.0-alpha-3.1 in repository topia. See https://gitlab.nuiton.org/nuiton/topia.git commit 76a9054cb3a72ca5f0076614d5c2d33e1a203739 Author: Tony Chemit <chemit@codelutin.com> Date: Thu Oct 31 22:40:14 2013 +0000 fix scm info --- pom.xml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index dcef925..222fcae 100644 --- a/pom.xml +++ b/pom.xml @@ -208,11 +208,17 @@ </modules> <scm> - <connection>scm:svn:http://svn.nuiton.org/svn/topia/tags/topia-3.0-alpha-3</connection> - <developerConnection>scm:svn:http://svn.nuiton.org/svn/topia/tags/topia-3.0-alpha-3 + <connection> + scm:svn:http://svn.nuiton.org/svn/topia/breanches/topia-3.0-alpha-3.1 + </connection> + <developerConnection> + scm:svn:http://svn.nuiton.org/svn/topia/branches/topia-3.0-alpha-3.1 </developerConnection> - <url>http://nuiton.org/projects/topia/repository/show/branches/tags/topia-3.0-alpha-3</url> + <url> + http://nuiton.org/projects/topia/repository/show/branches/topia-3.0-alpha-3.... + </url> </scm> + <distributionManagement> <site> <id>${platform}</id> -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
This is an automated email from the git hooks/post-receive script. New commit to annotated tag v3.0-alpha-3.1 in repository topia. See https://gitlab.nuiton.org/nuiton/topia.git commit 62f834149490cdf8e2aa863da1cfeaaf6ead7822 Author: Maven Release Manager <???> Date: Thu Oct 31 22:42:53 2013 +0000 [maven-release-plugin] prepare release topia-3.0-alpha-3.1 --- pom.xml | 8 ++++---- topia-persistence/pom.xml | 2 +- topia-service-migration/pom.xml | 2 +- topia-service-replication/pom.xml | 2 +- topia-service-security/pom.xml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pom.xml b/pom.xml index 222fcae..c0ccd98 100644 --- a/pom.xml +++ b/pom.xml @@ -33,7 +33,7 @@ </parent> <artifactId>topia</artifactId> - <version>3.0-alpha-3.1-SNAPSHOT</version> + <version>3.0-alpha-3.1</version> <packaging>pom</packaging> <name>ToPIA</name> @@ -209,13 +209,13 @@ <scm> <connection> - scm:svn:http://svn.nuiton.org/svn/topia/breanches/topia-3.0-alpha-3.1 + scm:svn:http://svn.nuiton.org/svn/topia/breanches/topia-3.0-alpha-3.1/tags/topia-3.0... </connection> <developerConnection> - scm:svn:http://svn.nuiton.org/svn/topia/branches/topia-3.0-alpha-3.1 + scm:svn:http://svn.nuiton.org/svn/topia/tags/topia-3.0-alpha-3.1 </developerConnection> <url> - http://nuiton.org/projects/topia/repository/show/branches/topia-3.0-alpha-3.... + http://nuiton.org/projects/topia/repository/show/tags/topia-3.0-alpha-3.1 </url> </scm> diff --git a/topia-persistence/pom.xml b/topia-persistence/pom.xml index 3d7112d..ddb1005 100644 --- a/topia-persistence/pom.xml +++ b/topia-persistence/pom.xml @@ -30,7 +30,7 @@ <parent> <groupId>org.nuiton</groupId> <artifactId>topia</artifactId> - <version>3.0-alpha-3.1-SNAPSHOT</version> + <version>3.0-alpha-3.1</version> </parent> <groupId>org.nuiton.topia</groupId> diff --git a/topia-service-migration/pom.xml b/topia-service-migration/pom.xml index 1ff1fd5..d050bec 100644 --- a/topia-service-migration/pom.xml +++ b/topia-service-migration/pom.xml @@ -30,7 +30,7 @@ <parent> <groupId>org.nuiton</groupId> <artifactId>topia</artifactId> - <version>3.0-alpha-3.1-SNAPSHOT</version> + <version>3.0-alpha-3.1</version> </parent> <groupId>org.nuiton.topia</groupId> diff --git a/topia-service-replication/pom.xml b/topia-service-replication/pom.xml index 9649a53..a248d7d 100644 --- a/topia-service-replication/pom.xml +++ b/topia-service-replication/pom.xml @@ -30,7 +30,7 @@ <parent> <groupId>org.nuiton</groupId> <artifactId>topia</artifactId> - <version>3.0-alpha-3.1-SNAPSHOT</version> + <version>3.0-alpha-3.1</version> </parent> <groupId>org.nuiton.topia</groupId> diff --git a/topia-service-security/pom.xml b/topia-service-security/pom.xml index 11fda77..f41a0fa 100644 --- a/topia-service-security/pom.xml +++ b/topia-service-security/pom.xml @@ -30,7 +30,7 @@ <parent> <groupId>org.nuiton</groupId> <artifactId>topia</artifactId> - <version>3.0-alpha-3.1-SNAPSHOT</version> + <version>3.0-alpha-3.1</version> </parent> <groupId>org.nuiton.topia</groupId> -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
This is an automated email from the git hooks/post-receive script. New commit to annotated tag v3.0-alpha-3.1 in repository topia. See https://gitlab.nuiton.org/nuiton/topia.git commit 66d682dd51b371ded5cdca29aecdef879b364e90 Author: Maven Release Manager <???> Date: Thu Oct 31 22:42:55 2013 +0000 [maven-release-plugin] copy for tag topia-3.0-alpha-3.1 -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
This is an automated email from the git hooks/post-receive script. New commit to annotated tag v3.0-alpha-3.1 in repository topia. See https://gitlab.nuiton.org/nuiton/topia.git commit 31c94c613f2c61834bfadcf921df8f905c2ed74e Author: Tony Chemit <chemit@codelutin.com> Date: Thu Oct 31 22:50:14 2013 +0000 fix scm --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c0ccd98..cfe94fc 100644 --- a/pom.xml +++ b/pom.xml @@ -209,7 +209,7 @@ <scm> <connection> - scm:svn:http://svn.nuiton.org/svn/topia/breanches/topia-3.0-alpha-3.1/tags/topia-3.0... + scm:svn:http://svn.nuiton.org/svn/topia/tags/topia-3.0-alpha-3.1 </connection> <developerConnection> scm:svn:http://svn.nuiton.org/svn/topia/tags/topia-3.0-alpha-3.1 -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
participants (1)
-
nuiton.org scm