ACCUMULO-2361 fix missing space in error message
Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/1a66f3bd Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/1a66f3bd Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/1a66f3bd Branch: refs/heads/master Commit: 1a66f3bd851cc171b26c6b9e62c515338207afac Parents: a06b6c6 Author: Eric Newton <eric.new...@gmail.com> Authored: Tue Feb 18 09:47:21 2014 -0500 Committer: Eric Newton <eric.new...@gmail.com> Committed: Tue Feb 18 09:47:21 2014 -0500 ---------------------------------------------------------------------- .../main/java/org/apache/accumulo/master/tableOps/DeleteTable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/1a66f3bd/server/master/src/main/java/org/apache/accumulo/master/tableOps/DeleteTable.java ---------------------------------------------------------------------- diff --git a/server/master/src/main/java/org/apache/accumulo/master/tableOps/DeleteTable.java b/server/master/src/main/java/org/apache/accumulo/master/tableOps/DeleteTable.java index f30618e..6751346 100644 --- a/server/master/src/main/java/org/apache/accumulo/master/tableOps/DeleteTable.java +++ b/server/master/src/main/java/org/apache/accumulo/master/tableOps/DeleteTable.java @@ -102,7 +102,7 @@ class CleanUp extends MasterRepo { for (Entry<Key,Value> entry : scanner) { TabletLocationState locationState = MetaDataTableScanner.createTabletLocationState(entry.getKey(), entry.getValue()); if (!locationState.extent.isPreviousExtent(prevExtent)) { - log.debug("Still waiting for table to be deleted: " + tableId + " saw inconsistency" + prevExtent + " " + locationState.extent); + log.debug("Still waiting for table to be deleted: " + tableId + " saw inconsistency " + prevExtent + " " + locationState.extent); done = false; break; }