This is an automated email from the ASF dual-hosted git repository.

mmiller pushed a commit to branch 1.10
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/1.10 by this push:
     new b8fd349  Improve log message in Delete CleanUp FATE. (#1829)
b8fd349 is described below

commit b8fd34907155df4d69202b95183b3934ca660d95
Author: Mike Miller <mmil...@apache.org>
AuthorDate: Tue Dec 8 14:39:17 2020 -0500

    Improve log message in Delete CleanUp FATE. (#1829)
    
    
    
    Co-authored-by: Christopher Tubbs <ctubb...@apache.org>
---
 .../src/main/java/org/apache/accumulo/master/tableOps/CleanUp.java   | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git 
a/server/master/src/main/java/org/apache/accumulo/master/tableOps/CleanUp.java 
b/server/master/src/main/java/org/apache/accumulo/master/tableOps/CleanUp.java
index 0adedbc..6ff79e9 100644
--- 
a/server/master/src/main/java/org/apache/accumulo/master/tableOps/CleanUp.java
+++ 
b/server/master/src/main/java/org/apache/accumulo/master/tableOps/CleanUp.java
@@ -102,8 +102,9 @@ class CleanUp extends MasterRepo {
       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;
       }

Reply via email to