HBASE-3711 - amend patch to fix compilation error
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1086747 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fbd1666643
commit
c222e2b486
|
@ -271,11 +271,11 @@ public class ImportTsv {
|
|||
if (skipBadLines) {
|
||||
System.err.println(
|
||||
"Bad line at offset: " + offset.get() + ":\n" +
|
||||
badLine.getMessage());
|
||||
e.getMessage());
|
||||
badLineCount.increment(1);
|
||||
return;
|
||||
} else {
|
||||
throw new IOException(badLine);
|
||||
throw new IOException(e);
|
||||
}
|
||||
} catch (InterruptedException e) {
|
||||
e.printStackTrace();
|
||||
|
|
Loading…
Reference in New Issue