Author: lektran
Date: Mon Jan 18 16:47:04 2010
New Revision: 900455
URL:
http://svn.apache.org/viewvc?rev=900455&view=revLog:
Corrected call to UtilCache constructor, broken since most constructors were removed some time ago. Reported by Sam Hamilton, OFBIZ-3341
Modified:
ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/EntityPerformanceTest.groovy
Modified: ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/EntityPerformanceTest.groovy
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/EntityPerformanceTest.groovy?rev=900455&r1=900454&r2=900455&view=diff==============================================================================
--- ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/EntityPerformanceTest.groovy (original)
+++ ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/EntityPerformanceTest.groovy Mon Jan 18 16:47:04 2010
@@ -190,7 +190,7 @@
perfRow.callsPerSecond = decimalFormat.format(callsPerSecond);
performanceList.add(perfRow);
- utilCache = new UtilCache("test-cache", 0, 0, false);
+ utilCache = new UtilCache("test-cache", 0, 0, 0, false, false, "test-cache");
utilCache.put("testName", "testValue");
calls = 1000000;
startTime = System.currentTimeMillis();