HADOOP-14678. AdlFilesystem#initialize swallows exception when getting user name. Contributed by John Zhuge.
This commit is contained in:
parent
369f731264
commit
f735ad1b67
|
@ -129,6 +129,8 @@ public class AdlFileSystem extends FileSystem {
|
||||||
userName = UserGroupInformation.getCurrentUser().getShortUserName();
|
userName = UserGroupInformation.getCurrentUser().getShortUserName();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
userName = "hadoop";
|
userName = "hadoop";
|
||||||
|
LOG.warn("Got exception when getting Hadoop user name."
|
||||||
|
+ " Set the user name to '" + userName + "'.", e);
|
||||||
}
|
}
|
||||||
|
|
||||||
this.setWorkingDirectory(getHomeDirectory());
|
this.setWorkingDirectory(getHomeDirectory());
|
||||||
|
|
Loading…
Reference in New Issue