HBASE-9437 hbase.regionserver.checksum.verify default is true

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1520634 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
nkeywal 2013-09-06 17:12:56 +00:00
parent 1f47ffb7fa
commit 3bd87232ef
1 changed files with 1 additions and 1 deletions

View File

@ -497,7 +497,7 @@ public class HRegionServer implements ClientProtos.ClientService.BlockingInterfa
// do we use checksum verification in the hbase? If hbase checksum verification
// is enabled, then we automatically switch off hdfs checksum verification.
this.useHBaseChecksum = conf.getBoolean(HConstants.HBASE_CHECKSUM_VERIFICATION, false);
this.useHBaseChecksum = conf.getBoolean(HConstants.HBASE_CHECKSUM_VERIFICATION, true);
// check that the user has not set the "dfs.client.read.shortcircuit.skip.checksum" property.
boolean shortCircuitSkipChecksum = conf.getBoolean(