HBASE-14929 There is a space missing from table "foo" is not currently available (Carlos A. Morillo)

This commit is contained in:
Jonathan M Hsieh 2015-12-14 16:07:05 -08:00
parent 04622254f7
commit 10d86c7dae
1 changed files with 1 additions and 1 deletions

View File

@ -321,7 +321,7 @@ public class LoadIncrementalHFiles extends Configured implements Tool {
RegionLocator regionLocator) throws TableNotFoundException, IOException {
if (!admin.isTableAvailable(regionLocator.getName())) {
throw new TableNotFoundException("Table " + table.getName() + "is not currently available.");
throw new TableNotFoundException("Table " + table.getName() + " is not currently available.");
}
ExecutorService pool = createExecutorService();