HADOOP-15772. Remove the 'Path ... should be specified as a URI' warnings on startup. Contributed by Ayush Saxena.

This commit is contained in:
Arpit Agarwal 2018-09-19 13:48:27 -07:00
parent a30b4f9e71
commit 2eb597b151
1 changed files with 1 additions and 2 deletions

View File

@ -97,8 +97,7 @@ public final class Util {
// if URI is null or scheme is undefined, then assume it's file:// // if URI is null or scheme is undefined, then assume it's file://
if(u == null || u.getScheme() == null){ if(u == null || u.getScheme() == null){
LOG.warn("Path " + s + " should be specified as a URI " LOG.info("Assuming 'file' scheme for path " + s + " in configuration.");
+ "in configuration files. Please update hdfs configuration.");
u = fileAsURI(new File(s)); u = fileAsURI(new File(s));
} }
return u; return u;