HBASE-6596 Revert HBASE-5022; it undoes HBC.create -- ADDENDUM

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1374012 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2012-08-16 19:46:07 +00:00
parent 700be88f29
commit 6af9a020b2
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ public class RegionCoprocessorHost
}
if (cfgSpec != null) {
cfgSpec = cfgSpec.substring(cfgSpec.indexOf('|') + 1);
Configuration newConf = HBaseConfiguration.create(conf);
Configuration newConf = new Configuration(conf);
Matcher m = HConstants.CP_HTD_ATTR_VALUE_PARAM_PATTERN.matcher(cfgSpec);
while (m.find()) {
newConf.set(m.group(1), m.group(2));