You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ja...@apache.org on 2014/08/26 17:21:00 UTC

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

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();