|
@@ -220,6 +220,7 @@ class MapTask extends Task {
|
|
|
throw new IOException("IO error in map input file "
|
|
|
+ conf.get("map.input.file"), ioe);
|
|
|
}
|
|
|
+ throw ioe;
|
|
|
}
|
|
|
return ret;
|
|
|
}
|
|
@@ -483,6 +484,7 @@ class MapTask extends Task {
|
|
|
throw new IOException("IO error in map input file "
|
|
|
+ fileSplit.getPath().toString(), ioe);
|
|
|
}
|
|
|
+ throw ioe;
|
|
|
}
|
|
|
return result;
|
|
|
}
|