You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2013/10/18 01:45:36 UTC

git commit: ACCUMULO-1637 Missed a usage of the DFSConfigKeys constant that might not always be present.

Updated Branches:
  refs/heads/1.5.1-SNAPSHOT 109db3522 -> 18bcd14ca


ACCUMULO-1637 Missed a usage of the DFSConfigKeys constant that might
not always be present.


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

Branch: refs/heads/1.5.1-SNAPSHOT
Commit: 18bcd14ca8020e969b9881c44cc3c565471cae5b
Parents: 109db35
Author: Josh Elser <el...@apache.org>
Authored: Thu Oct 17 19:36:16 2013 -0400
Committer: Josh Elser <el...@apache.org>
Committed: Thu Oct 17 19:36:16 2013 -0400

----------------------------------------------------------------------
 .../java/org/apache/accumulo/server/tabletserver/TabletServer.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/18bcd14c/server/src/main/java/org/apache/accumulo/server/tabletserver/TabletServer.java
----------------------------------------------------------------------
diff --git a/server/src/main/java/org/apache/accumulo/server/tabletserver/TabletServer.java b/server/src/main/java/org/apache/accumulo/server/tabletserver/TabletServer.java
index ea30694..7ad106e 100644
--- a/server/src/main/java/org/apache/accumulo/server/tabletserver/TabletServer.java
+++ b/server/src/main/java/org/apache/accumulo/server/tabletserver/TabletServer.java
@@ -3257,7 +3257,7 @@ public class TabletServer extends AbstractMetricsImpl implements org.apache.accu
         
         if (!dfsSupportAppendDefaultValue) {
           // See if the user did the correct override
-          if (!fs.getConf().getBoolean(DFSConfigKeys.DFS_SUPPORT_APPEND_KEY, false)) {
+          if (!fs.getConf().getBoolean(DFS_SUPPORT_APPEND, false)) {
             log.fatal("Accumulo requires that dfs.support.append to true. " + ticketMessage);
             System.exit(-1);
           }