You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by jd...@apache.org on 2011/12/14 00:38:08 UTC

svn commit: r1213988 - /hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/master/HMaster.java

Author: jdcryans
Date: Tue Dec 13 23:38:08 2011
New Revision: 1213988

URL: http://svn.apache.org/viewvc?rev=1213988&view=rev
Log:
HBASE-5017's commit was missing one patch that was applied to trunk

Modified:
    hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/master/HMaster.java

Modified: hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/master/HMaster.java
URL: http://svn.apache.org/viewvc/hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/master/HMaster.java?rev=1213988&r1=1213987&r2=1213988&view=diff
==============================================================================
--- hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/master/HMaster.java (original)
+++ hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/master/HMaster.java Tue Dec 13 23:38:08 2011
@@ -206,7 +206,7 @@ implements HMasterInterface, HMasterRegi
   throws IOException, KeeperException, InterruptedException {
     this.conf = new Configuration(conf);
     // Disable the block cache on the master
-    this.conf.setFloat(CacheConfig.HFILE_BLOCK_CACHE_SIZE_KEY, 0.0f);
+    this.conf.setFloat(HConstants.HFILE_BLOCK_CACHE_SIZE_KEY, 0.0f);
     // Set how many times to retry talking to another server over HConnection.
     HConnectionManager.setServerSideHConnectionRetries(this.conf, LOG);
     // Server to handle client requests.