Trivial log fix -- we report number of offline regions to enable not online regions

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1129967 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Helmling 2011-05-31 23:38:22 +00:00
parent 7d4b427069
commit 40494a9f23
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ public class EnableTableHandler extends EventHandler {
break;
}
LOG.info("Table has " + countOfRegionsInTable + " regions of which " +
regions.size() + " are online.");
regions.size() + " are offline.");
BulkEnabler bd = new BulkEnabler(this.server, regions,
countOfRegionsInTable);
try {