HBASE-14929 There is a space missing from table "foo" is not currently available (Carlos A. Morillo)
This commit is contained in:
parent
04622254f7
commit
10d86c7dae
|
@ -321,7 +321,7 @@ public class LoadIncrementalHFiles extends Configured implements Tool {
|
||||||
RegionLocator regionLocator) throws TableNotFoundException, IOException {
|
RegionLocator regionLocator) throws TableNotFoundException, IOException {
|
||||||
|
|
||||||
if (!admin.isTableAvailable(regionLocator.getName())) {
|
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();
|
ExecutorService pool = createExecutorService();
|
||||||
|
|
Loading…
Reference in New Issue