Skip to content

Commit bb14bda

Browse files
committed
HBASE-23782 Addendum fix error prone warning
1 parent d797ed0 commit bb14bda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSTableDescriptors.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ public FSTableDescriptors(final Configuration conf, final FileSystem fs, final P
144144
} catch (TableInfoMissingException e) {
145145
TableDescriptorBuilder builder = createMetaTableDescriptorBuilder(conf);
146146
if (metaObserver != null) {
147-
metaObserver.apply(builder);
147+
builder = metaObserver.apply(builder);
148148
}
149149
TableDescriptor td = builder.build();
150150
LOG.info("Creating new hbase:meta table default descriptor/schema {}", td);

0 commit comments

Comments
 (0)