You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by jb...@apache.org on 2014/08/06 20:30:10 UTC

[09/19] git commit: update logged message to reference correct property (tombstone_failure_threshold) patch by Nikita Vetoshkin; reviewed by jbellis for CASSANDRA-7691

update logged message to reference correct property (tombstone_failure_threshold)
patch by Nikita Vetoshkin; reviewed by jbellis for CASSANDRA-7691


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

Branch: refs/heads/cassandra-2.1.0
Commit: b6b8a285e183ccca9a7d5473191248b501c7bd42
Parents: a21e655
Author: Jonathan Ellis <jb...@apache.org>
Authored: Wed Aug 6 12:54:41 2014 -0500
Committer: Jonathan Ellis <jb...@apache.org>
Committed: Wed Aug 6 12:54:41 2014 -0500

----------------------------------------------------------------------
 src/java/org/apache/cassandra/db/filter/SliceQueryFilter.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/b6b8a285/src/java/org/apache/cassandra/db/filter/SliceQueryFilter.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/cassandra/db/filter/SliceQueryFilter.java b/src/java/org/apache/cassandra/db/filter/SliceQueryFilter.java
index 356418e..e0ccc2f 100644
--- a/src/java/org/apache/cassandra/db/filter/SliceQueryFilter.java
+++ b/src/java/org/apache/cassandra/db/filter/SliceQueryFilter.java
@@ -196,8 +196,8 @@ public class SliceQueryFilter implements IDiskAtomFilter
 
             if (respectTombstoneThresholds() && columnCounter.ignored() > DatabaseDescriptor.getTombstoneFailureThreshold())
             {
-                Tracing.trace("Scanned over {} tombstones; query aborted (see tombstone_fail_threshold)", DatabaseDescriptor.getTombstoneFailureThreshold());
-                logger.error("Scanned over {} tombstones in {}.{}; query aborted (see tombstone_fail_threshold)",
+                Tracing.trace("Scanned over {} tombstones; query aborted (see tombstone_failure_threshold)", DatabaseDescriptor.getTombstoneFailureThreshold());
+                logger.error("Scanned over {} tombstones in {}.{}; query aborted (see tombstone_failure_threshold)",
                              DatabaseDescriptor.getTombstoneFailureThreshold(), container.metadata().ksName, container.metadata().cfName);
                 throw new TombstoneOverwhelmingException();
             }