Skip to content

Commit

Permalink
Improve log message in Delete CleanUp FATE. (#1829)
Browse files Browse the repository at this point in the history

Co-authored-by: Christopher Tubbs <[email protected]>
  • Loading branch information
milleruntime and ctubbsii authored Dec 8, 2020
1 parent 7e2e09e commit b8fd349
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,9 @@ public long isReady(long tid, Master master) throws Exception {
if (!state.equals(TabletState.UNASSIGNED)) {
// This code will even wait on tablets that are assigned to dead tablets servers. This is
// intentional because the master may make metadata writes for these tablets. See #587
log.debug("Still waiting for table to be deleted: " + tableId + " locationState: "
+ locationState);
log.debug(
"Still waiting for table({}) to be deleted; Target tablet state: UNASSIGNED, Current tablet state: {}, locationState: {}",
tableId, state, locationState);
done = false;
break;
}
Expand Down

0 comments on commit b8fd349

Please sign in to comment.