You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by be...@apache.org on 2015/05/18 10:24:51 UTC

cassandra git commit: fix compilation error

Repository: cassandra
Updated Branches:
  refs/heads/cassandra-2.1 bdbc61ff7 -> 7acd0e69d


fix compilation error


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

Branch: refs/heads/cassandra-2.1
Commit: 7acd0e69dfaef9dd1ca2950038aa6feef836c097
Parents: bdbc61f
Author: Benedict Elliott Smith <be...@apache.org>
Authored: Mon May 18 09:24:02 2015 +0100
Committer: Benedict Elliott Smith <be...@apache.org>
Committed: Mon May 18 09:24:16 2015 +0100

----------------------------------------------------------------------
 .../unit/org/apache/cassandra/io/sstable/SSTableRewriterTest.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/7acd0e69/test/unit/org/apache/cassandra/io/sstable/SSTableRewriterTest.java
----------------------------------------------------------------------
diff --git a/test/unit/org/apache/cassandra/io/sstable/SSTableRewriterTest.java b/test/unit/org/apache/cassandra/io/sstable/SSTableRewriterTest.java
index 56b15fe..5d66f97 100644
--- a/test/unit/org/apache/cassandra/io/sstable/SSTableRewriterTest.java
+++ b/test/unit/org/apache/cassandra/io/sstable/SSTableRewriterTest.java
@@ -776,7 +776,8 @@ public class SSTableRewriterTest extends SchemaLoader
         }
         writer.abort();
         cfs.getDataTracker().unmarkCompacting(sstables);
-        truncateCF();
+        cfs.truncateBlocking();
+        SSTableDeletingTask.waitForDeletions();
         validateCFS(cfs);
     }