You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by db...@apache.org on 2014/09/16 05:50:27 UTC

[1/2] git commit: fix format string to match count of values

Repository: cassandra
Updated Branches:
  refs/heads/trunk 56674e0e5 -> 2266fb3e4


fix format string to match count of values


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

Branch: refs/heads/trunk
Commit: 1ba959391c77e41a1a60c2afca38b77576907ddf
Parents: 3909567
Author: Dave Brosius <db...@mebigfatguy.com>
Authored: Mon Sep 15 23:49:36 2014 -0400
Committer: Dave Brosius <db...@mebigfatguy.com>
Committed: Mon Sep 15 23:49:36 2014 -0400

----------------------------------------------------------------------
 src/java/org/apache/cassandra/tools/NodeTool.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/1ba95939/src/java/org/apache/cassandra/tools/NodeTool.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/cassandra/tools/NodeTool.java b/src/java/org/apache/cassandra/tools/NodeTool.java
index fbdce0f..91f9bf0 100644
--- a/src/java/org/apache/cassandra/tools/NodeTool.java
+++ b/src/java/org/apache/cassandra/tools/NodeTool.java
@@ -2373,7 +2373,7 @@ public class NodeTool
             double mean = stats[2] / stats[5];
             double stdev = Math.sqrt((stats[3] / stats[5]) - (mean * mean));
             System.out.printf("%20s%20s%20s%20s%20s%20s%n", "Interval (ms)", "Max GC Elapsed (ms)", "Total GC Elapsed (ms)", "Stdev GC Elapsed (ms)", "GC Reclaimed (MB)", "Collections");
-            System.out.printf("%20.0f%20.0f%20.0f%20.0f%20.0f%n", stats[0], stats[1], stats[2], stdev, stats[4], stats[5]);
+            System.out.printf("%20.0f%20.0f%20.0f%20.0f%20.0f%20.0f%n", stats[0], stats[1], stats[2], stdev, stats[4], stats[5]);
         }
     }
 


[2/2] git commit: Merge branch 'cassandra-2.1' into trunk

Posted by db...@apache.org.
Merge branch 'cassandra-2.1' into trunk


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

Branch: refs/heads/trunk
Commit: 2266fb3e4d847ffbb581c3e3ceb913c3e4152165
Parents: 56674e0 1ba9593
Author: Dave Brosius <db...@mebigfatguy.com>
Authored: Mon Sep 15 23:50:09 2014 -0400
Committer: Dave Brosius <db...@mebigfatguy.com>
Committed: Mon Sep 15 23:50:09 2014 -0400

----------------------------------------------------------------------
 src/java/org/apache/cassandra/tools/NodeTool.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/2266fb3e/src/java/org/apache/cassandra/tools/NodeTool.java
----------------------------------------------------------------------