revert HADOOP-9646 to fix hadoop-streaming compile issue
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1493252 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6bc12bc42a
commit
5e72bfc521
|
@ -372,9 +372,6 @@ Release 2.1.0-beta - UNRELEASED
|
||||||
|
|
||||||
HADOOP-9630. [RPC v9] Remove IpcSerializationType. (Junping Du via llu)
|
HADOOP-9630. [RPC v9] Remove IpcSerializationType. (Junping Du via llu)
|
||||||
|
|
||||||
HADOOP-9646. Inconsistent exception specifications in FileUtils#chmod
|
|
||||||
(Colin Patrick McCabe)
|
|
||||||
|
|
||||||
NEW FEATURES
|
NEW FEATURES
|
||||||
|
|
||||||
HADOOP-9283. Add support for running the Hadoop client on AIX. (atm)
|
HADOOP-9283. Add support for running the Hadoop client on AIX. (atm)
|
||||||
|
|
|
@ -800,7 +800,7 @@ public class FileUtil {
|
||||||
* @throws InterruptedException
|
* @throws InterruptedException
|
||||||
*/
|
*/
|
||||||
public static int chmod(String filename, String perm
|
public static int chmod(String filename, String perm
|
||||||
) throws IOException {
|
) throws IOException, InterruptedException {
|
||||||
return chmod(filename, perm, false);
|
return chmod(filename, perm, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue