HBASE-20190 Fix default for MIGRATE_TABLE_STATE_FROM_ZK_KEY
This commit is contained in:
parent
95596e8ba7
commit
e0bdc87b27
|
@ -270,7 +270,8 @@ public class TableStateManager {
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
private void migrateZooKeeper() throws IOException {
|
private void migrateZooKeeper() throws IOException {
|
||||||
if (this.master.getConfiguration().getBoolean(MIGRATE_TABLE_STATE_FROM_ZK_KEY, false)) {
|
if (!this.master.getConfiguration().getBoolean(MIGRATE_TABLE_STATE_FROM_ZK_KEY,
|
||||||
|
true)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in New Issue