|
From: <jt...@hy...> - 2007-03-13 21:52:39
|
Author: jtravis Date: 2007-03-13 13:52:35 -0800 (Tue, 13 Mar 2007) New Revision: 3739 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=3739 Added: trunk/etc/tweak.properties Modified: trunk/build.xml trunk/etc/ehcache.xml Log: Add tweak properties and ehcache properties Modified: trunk/build.xml =================================================================== --- trunk/build.xml 2007-03-13 21:52:03 UTC (rev 3738) +++ trunk/build.xml 2007-03-13 21:52:35 UTC (rev 3739) @@ -295,7 +295,7 @@ <copy todir="${ear.dir}/META-INF" overwrite="true"> <fileset dir="etc" - includes="application.xml,jboss-app.xml,startup_classes.txt" /> + includes="application.xml,jboss-app.xml,startup_classes.txt,tweak.properties" /> <fileset dir="${build.dir}/classes/META-INF"> <include name="**/*.hbm.xml" /> <include name="*.cfg.xml" /> Modified: trunk/etc/ehcache.xml =================================================================== --- trunk/etc/ehcache.xml 2007-03-13 21:52:03 UTC (rev 3738) +++ trunk/etc/ehcache.xml 2007-03-13 21:52:35 UTC (rev 3739) @@ -581,4 +581,11 @@ timeToLiveSeconds="0" memoryStoreEvictionPolicy="LRU"/> + <!-- Update Cache --> + <cache name="org.hyperic.hq.bizapp.server.session.UpdateStatus" + maxElementsInMemory="1" + eternal="true" + timeToIdleSeconds="0" + timeToLiveSeconds="0" + memoryStoreEvictionPolicy="LRU"/> </ehcache> Added: trunk/etc/tweak.properties =================================================================== --- trunk/etc/tweak.properties (rev 0) +++ trunk/etc/tweak.properties 2007-03-13 21:52:35 UTC (rev 3739) @@ -0,0 +1,2 @@ +#hq.updateNotify.interval=360000 +#hq.updateNotify.url=http://updates.hyperic.com |