Skip to content
Snippets Groups Projects
Commit dfb4c697 authored by Y.CORP.YAHOO.COM\tgraves's avatar Y.CORP.YAHOO.COM\tgraves
Browse files

Throw exception if the yarn local dirs isn't set

parent c0b4095e
No related branches found
No related tags found
No related merge requests found
......@@ -102,7 +102,11 @@ class ApplicationMaster(args: ApplicationMasterArguments, conf: Configuration) e
val yarnLocalSysDirs = Option(System.getenv("YARN_LOCAL_DIRS"))
yarnLocalSysDirs match {
case Some(s) => localDirs = s
case None => if (localDirs == null) localDirs = ""
case None => {
if ((localDirs == null) || (localDirs.isEmpty())) {
throw new Exception("Yarn Local dirs can't be empty")
}
}
}
return localDirs
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment