anmolnar commented on code in PR #6632:
URL: https://github.com/apache/hbase/pull/6632#discussion_r1951742775
##########
hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/InitMetaProcedure.java:
##########
@@ -61,9 +64,14 @@ public class InitMetaProcedure extends
AbstractStateMachineTableProcedure<InitMe
private RetryCounter retryCounter;
+ protected final Configuration conf;
+ public InitMetaProcedure(Configuration conf) {
+ this.conf = conf;
+ }
+
Review Comment:
You probably don't need this constructor at all if you return
`TableName.META_TABLE_NAME` in `getTableName()` method. Actually don't need to
modify this class at all.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]