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:25:57 UTC

[2/4] cassandra git commit: fix compilation error

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/trunk
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);
     }