Author: nmalin
Date: Sat Aug 27 07:07:33 2016
New Revision: 1757955
URL:
http://svn.apache.org/viewvc?rev=1757955&view=revLog:
Performance tests screen has been broken by a bad UtilCache call. Thanks to Pawan Verma for this correction throw OFBIZ-7989.
Modified:
ofbiz/trunk/framework/webtools/groovyScripts/entity/EntityPerformanceTest.groovy
Modified: ofbiz/trunk/framework/webtools/groovyScripts/entity/EntityPerformanceTest.groovy
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/webtools/groovyScripts/entity/EntityPerformanceTest.groovy?rev=1757955&r1=1757954&r2=1757955&view=diff==============================================================================
--- ofbiz/trunk/framework/webtools/groovyScripts/entity/EntityPerformanceTest.groovy (original)
+++ ofbiz/trunk/framework/webtools/groovyScripts/entity/EntityPerformanceTest.groovy Sat Aug 27 07:07:33 2016
@@ -190,7 +190,7 @@ if (security.hasPermission("ENTITY_MAINT
perfRow.callsPerSecond = decimalFormat.format(callsPerSecond);
performanceList.add(perfRow);
- utilCache = new UtilCache("test-cache", 0, 0, 0, false, false, "test-cache");
+ utilCache = new UtilCache("test-cache", 0, 0, 0, false, null, "test-cache");
utilCache.put("testName", "testValue");
calls = 1000000;
startTime = System.currentTimeMillis();