svn commit: r1620633 - /ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/stats/StatsSinceStart.groovy

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1620633 - /ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/stats/StatsSinceStart.groovy

jacopoc
Author: jacopoc
Date: Tue Aug 26 15:20:59 2014
New Revision: 1620633

URL: http://svn.apache.org/r1620633
Log:
This was probably a bug due to copy-and-paste.


Modified:
    ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/stats/StatsSinceStart.groovy

Modified: ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/stats/StatsSinceStart.groovy
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/stats/StatsSinceStart.groovy?rev=1620633&r1=1620632&r2=1620633&view=diff
==============================================================================
--- ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/stats/StatsSinceStart.groovy (original)
+++ ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/stats/StatsSinceStart.groovy Tue Aug 26 15:20:59 2014
@@ -61,7 +61,7 @@ eventList = FastList.newInstance();
 while (iterator.hasNext()) {
     requestIdMap = FastMap.newInstance();
     statsId = iterator.next();
-    bin = ServerHitBin.requestSinceStarted.get(statsId);
+    bin = ServerHitBin.eventSinceStarted.get(statsId);
     if (bin) {
         requestIdMap.requestId = bin.getId();
         requestIdMap.requestType = bin.getType();
@@ -85,7 +85,7 @@ viewList = FastList.newInstance();
 while (iterator.hasNext()) {
     requestIdMap = FastMap.newInstance();
     statsId = iterator.next();
-    bin = ServerHitBin.requestSinceStarted.get(statsId);
+    bin = ServerHitBin.viewSinceStarted.get(statsId);
     if (bin) {
         requestIdMap.requestId = bin.getId();
         requestIdMap.requestType = bin.getType();