HDFS-9257. improve error message for "Absolute path required" in INode.java to contain the rejected path. Contributed by Marcell Szabo

This commit is contained in:
Harsh J 2015-10-16 17:12:35 +02:00
parent a554701fe4
commit 52ac73f344
2 changed files with 5 additions and 1 deletions

View File

@ -849,6 +849,9 @@ Release 2.8.0 - UNRELEASED
IMPROVEMENTS
HDFS-9257. improve error message for "Absolute path required" in INode.java
to contain the rejected path (Marcell Szabo via harsh)
HDFS-2390. dfsadmin -setBalancerBandwidth does not validate -ve value
(Gautam Gopalakrishnan via harsh)

View File

@ -748,7 +748,8 @@ static byte[][] getPathComponents(String[] strings) {
*/
public static String[] getPathNames(String path) {
if (path == null || !path.startsWith(Path.SEPARATOR)) {
throw new AssertionError("Absolute path required");
throw new AssertionError("Absolute path required, but got '"
+ path + "'");
}
return StringUtils.split(path, Path.SEPARATOR_CHAR);
}