You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by ja...@apache.org on 2015/08/28 17:33:04 UTC

cassandra git commit: Fix typo

Repository: cassandra
Updated Branches:
  refs/heads/cassandra-3.0 fcdf191f5 -> e5c142854


Fix typo


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

Branch: refs/heads/cassandra-3.0
Commit: e5c14285404b1ba98d385c5e5ed069229a2f6004
Parents: fcdf191
Author: T Jake Luciani <ja...@apache.org>
Authored: Fri Aug 28 11:32:53 2015 -0400
Committer: T Jake Luciani <ja...@apache.org>
Committed: Fri Aug 28 11:32:53 2015 -0400

----------------------------------------------------------------------
 src/java/org/apache/cassandra/db/view/MaterializedViewManager.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/e5c14285/src/java/org/apache/cassandra/db/view/MaterializedViewManager.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/cassandra/db/view/MaterializedViewManager.java b/src/java/org/apache/cassandra/db/view/MaterializedViewManager.java
index 6c108a2..e0cecf5 100644
--- a/src/java/org/apache/cassandra/db/view/MaterializedViewManager.java
+++ b/src/java/org/apache/cassandra/db/view/MaterializedViewManager.java
@@ -59,7 +59,7 @@ import org.apache.cassandra.service.StorageService;
 public class MaterializedViewManager
 {
     private static final Striped<Lock> LOCKS = Striped.lazyWeakLock(DatabaseDescriptor.getConcurrentWriters() * 1024);
-    private static final boolean disableCoordinatorBatchlog = Boolean.getBoolean("cassandra.mv_disble_coordinator_batchlog");
+    private static final boolean disableCoordinatorBatchlog = Boolean.getBoolean("cassandra.mv_disable_coordinator_batchlog");
 
     private final ConcurrentNavigableMap<String, MaterializedView> viewsByName;