[Mc4j-cvs] SF.net SVN: mc4j:[617] trunk/mc4j/modules/ems
Brought to you by:
ghinkl
From: <jma...@us...> - 2010-07-30 21:39:44
|
Revision: 617 http://mc4j.svn.sourceforge.net/mc4j/?rev=617&view=rev Author: jmazzitelli Date: 2010-07-30 21:39:38 +0000 (Fri, 30 Jul 2010) Log Message: ----------- perm gen memory seems to be left un-gc'ed. but cleaning up apache commons LogFactory seems to help alot with reclaiming perm gen memory Modified Paths: -------------- trunk/mc4j/modules/ems/build.xml trunk/mc4j/modules/ems/src/ems-impl/org/mc4j/ems/impl/jmx/connection/DConnection.java Modified: trunk/mc4j/modules/ems/build.xml =================================================================== --- trunk/mc4j/modules/ems/build.xml 2010-02-05 13:30:54 UTC (rev 616) +++ trunk/mc4j/modules/ems/build.xml 2010-07-30 21:39:38 UTC (rev 617) @@ -30,7 +30,7 @@ <property name="module.jar" value="org-mc4j-ems.jar"/> - <property name="release.version" value="1.2.11"/> + <property name="release.version" value="1.2.12"/> <target Modified: trunk/mc4j/modules/ems/src/ems-impl/org/mc4j/ems/impl/jmx/connection/DConnection.java =================================================================== --- trunk/mc4j/modules/ems/src/ems-impl/org/mc4j/ems/impl/jmx/connection/DConnection.java 2010-02-05 13:30:54 UTC (rev 616) +++ trunk/mc4j/modules/ems/src/ems-impl/org/mc4j/ems/impl/jmx/connection/DConnection.java 2010-07-30 21:39:38 UTC (rev 617) @@ -102,6 +102,7 @@ // tracker.stopTracker(); connectionProvider.disconnect(); + LogFactory.release(connectionProvider.getClass().getClassLoader()); } /* TODO: Check WebLogic <= 8.1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |