HBASE-23782 Addendum fix error prone warning

This commit is contained in:
Duo Zhang 2020-02-04 10:14:27 +08:00
parent d797ed04e5
commit bb14bdad62
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ public class FSTableDescriptors implements TableDescriptors {
} catch (TableInfoMissingException e) {
TableDescriptorBuilder builder = createMetaTableDescriptorBuilder(conf);
if (metaObserver != null) {
metaObserver.apply(builder);
builder = metaObserver.apply(builder);
}
TableDescriptor td = builder.build();
LOG.info("Creating new hbase:meta table default descriptor/schema {}", td);