Repository: nifi
Updated Branches:
  refs/heads/master 8536ad65f -> afb9a0016


NIFI-2659: Fixed RPG Received stats. This closes #939

It was showing the 'Sent' stats as 'Received' stats.


Project: http://git-wip-us.apache.org/repos/asf/nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/afb9a001
Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/afb9a001
Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/afb9a001

Branch: refs/heads/master
Commit: afb9a0016f044e92b9970f6c88bd5888b24c2fa4
Parents: 8536ad6
Author: Koji Kawamura <ijokaruma...@apache.org>
Authored: Thu Aug 25 15:56:21 2016 +0900
Committer: Matt Gilman <matt.c.gil...@gmail.com>
Committed: Thu Aug 25 08:34:17 2016 -0400

----------------------------------------------------------------------
 .../src/main/webapp/js/nf/canvas/nf-remote-process-group.js      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/afb9a001/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group.js
----------------------------------------------------------------------
diff --git 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group.js
 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group.js
index f530ba6..ac5dae2 100644
--- 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group.js
+++ 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group.js
@@ -678,13 +678,13 @@ nf.RemoteProcessGroup = (function () {
         // received count value
         updated.select('text.remote-process-group-received tspan.count')
             .text(function (d) {
-                return 
nf.Common.substringBeforeFirst(d.status.aggregateSnapshot.sent, ' ');
+                return 
nf.Common.substringBeforeFirst(d.status.aggregateSnapshot.received, ' ');
             });
 
         // received size value
         updated.select('text.remote-process-group-received tspan.size')
             .text(function (d) {
-                return ' ' + 
nf.Common.substringAfterFirst(d.status.aggregateSnapshot.sent, ' ');
+                return ' ' + 
nf.Common.substringAfterFirst(d.status.aggregateSnapshot.received, ' ');
             });
 
         // --------------------

Reply via email to