You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@htrace.apache.org by cm...@apache.org on 2015/11/06 01:11:19 UTC

incubator-htrace git commit: HTRACE-288 addendum: fix ServerInfoView typo

Repository: incubator-htrace
Updated Branches:
  refs/heads/master 2fdef0929 -> 38ad7da02


HTRACE-288 addendum: fix ServerInfoView typo


Project: http://git-wip-us.apache.org/repos/asf/incubator-htrace/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-htrace/commit/38ad7da0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-htrace/tree/38ad7da0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-htrace/diff/38ad7da0

Branch: refs/heads/master
Commit: 38ad7da0221898ed2c50902a0f46c5f9b57e8017
Parents: 2fdef09
Author: Colin Patrick Mccabe <cm...@cloudera.com>
Authored: Thu Nov 5 16:10:55 2015 -0800
Committer: Colin Patrick Mccabe <cm...@cloudera.com>
Committed: Thu Nov 5 16:10:55 2015 -0800

----------------------------------------------------------------------
 htrace-webapp/src/main/webapp/app/server_info_view.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-htrace/blob/38ad7da0/htrace-webapp/src/main/webapp/app/server_info_view.js
----------------------------------------------------------------------
diff --git a/htrace-webapp/src/main/webapp/app/server_info_view.js b/htrace-webapp/src/main/webapp/app/server_info_view.js
index f8307ff..f3473d3 100644
--- a/htrace-webapp/src/main/webapp/app/server_info_view.js
+++ b/htrace-webapp/src/main/webapp/app/server_info_view.js
@@ -61,7 +61,7 @@ htrace.ServerInfoView = Backbone.View.extend({
     }
     remotes = remotes.sort()
     for (var i = 0; i < remotes.length; i++) {
-      var remote = remotes[0];
+      var remote = remotes[i];
       var smtx = spanMetrics[remote];
       out = out + "<tr>" + 
         "<td>" + remote + "</td>" +