You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2015/02/25 22:04:18 UTC

accumulo git commit: ACCUMULO-3603 broke my own test with 1.6 merge

Repository: accumulo
Updated Branches:
  refs/heads/master 668f81584 -> aac52a82e


ACCUMULO-3603 broke my own test with 1.6 merge


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

Branch: refs/heads/master
Commit: aac52a82e35f2000623dee247cba5a978e8cbb34
Parents: 668f815
Author: Eric C. Newton <er...@gmail.com>
Authored: Wed Feb 25 16:04:10 2015 -0500
Committer: Eric C. Newton <er...@gmail.com>
Committed: Wed Feb 25 16:04:10 2015 -0500

----------------------------------------------------------------------
 .../test/java/org/apache/accumulo/test/MultiTableRecoveryIT.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/aac52a82/test/src/test/java/org/apache/accumulo/test/MultiTableRecoveryIT.java
----------------------------------------------------------------------
diff --git a/test/src/test/java/org/apache/accumulo/test/MultiTableRecoveryIT.java b/test/src/test/java/org/apache/accumulo/test/MultiTableRecoveryIT.java
index 1bbbba6..a241f71 100644
--- a/test/src/test/java/org/apache/accumulo/test/MultiTableRecoveryIT.java
+++ b/test/src/test/java/org/apache/accumulo/test/MultiTableRecoveryIT.java
@@ -78,7 +78,7 @@ public class MultiTableRecoveryIT extends ConfigurableMacIT {
       final Mutation m = new Mutation(Long.toHexString(randomRow));
       m.put(new byte[0], new byte[0], values[table]);
       writers[table].addMutation(m);
-      if ((i % 10 * 1000) == 0) {
+      if (i % 10_000 == 0) {
         System.out.println("flushing");
         for (int w = 0; w < N; w++) {
           writers[w].flush();