Skip to content

Commit

Permalink
HBASE-23782 Addendum fix error prone warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Apache9 committed Feb 4, 2020
1 parent d797ed0 commit bb14bda
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public FSTableDescriptors(final Configuration conf, final FileSystem fs, final P
} 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);
Expand Down

0 comments on commit bb14bda

Please sign in to comment.