HBASE-2769. Fix typo in warning message for HBaseConfiguration
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@957051 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bdffd3830e
commit
76c2563c67
|
@ -406,6 +406,7 @@ Release 0.21.0 - Unreleased
|
|||
HBASE-2757 Fix flaky TestFromClientSide test by forcing region assignment
|
||||
HBASE-2741 HBaseExecutorService needs to be multi-cluster friendly
|
||||
(Karthik Ranganathan via JD)
|
||||
HBASE-2769 Fix typo in warning message for HBaseConfiguration
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-1760 Cleanup TODOs in HTable
|
||||
|
|
|
@ -42,7 +42,7 @@ public class HBaseConfiguration extends Configuration {
|
|||
//TODO:replace with private constructor, HBaseConfiguration should not extend Configuration
|
||||
super();
|
||||
addHbaseResources(this);
|
||||
LOG.warn("instantinating HBaseConfiguration() is deprecated. Please use" +
|
||||
LOG.warn("instantiating HBaseConfiguration() is deprecated. Please use" +
|
||||
" HBaseConfiguration#create() to construct a plain Configuration");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue