HBASE-21899 Fix missing variables for slf4j Logger
Signed-off-by: Toshihiro Suzuki <brfrn169@gmail.com>
This commit is contained in:
parent
dedab71381
commit
40e1d9174e
|
@ -88,7 +88,7 @@ public class ReopenTableRegionsProcedure
|
||||||
switch (state) {
|
switch (state) {
|
||||||
case REOPEN_TABLE_REGIONS_GET_REGIONS:
|
case REOPEN_TABLE_REGIONS_GET_REGIONS:
|
||||||
if (!env.getAssignmentManager().isTableEnabled(tableName)) {
|
if (!env.getAssignmentManager().isTableEnabled(tableName)) {
|
||||||
LOG.info("Table {} is disabled, give up reopening its regions");
|
LOG.info("Table {} is disabled, give up reopening its regions", tableName);
|
||||||
return Flow.NO_MORE_STATE;
|
return Flow.NO_MORE_STATE;
|
||||||
}
|
}
|
||||||
regions =
|
regions =
|
||||||
|
|
|
@ -255,7 +255,7 @@ class SerialReplicationChecker {
|
||||||
// has been moved to another RS and then back, so we need to check the barrier.
|
// has been moved to another RS and then back, so we need to check the barrier.
|
||||||
MutableLong previousPushedSeqId = pushed.getUnchecked(encodedNameAsString);
|
MutableLong previousPushedSeqId = pushed.getUnchecked(encodedNameAsString);
|
||||||
if (seqId == previousPushedSeqId.longValue() + 1) {
|
if (seqId == previousPushedSeqId.longValue() + 1) {
|
||||||
LOG.trace("The sequence id for {} is continuous, pass");
|
LOG.trace("The sequence id for {} is continuous, pass", entry);
|
||||||
previousPushedSeqId.increment();
|
previousPushedSeqId.increment();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue