Description
OOZIE-1500 changed
// propagate delegation related props from launcher job to MR job if (System.getenv("HADOOP_TOKEN_FILE_LOCATION") != null) { jobConf.set("mapreduce.job.credentials.binary", System.getenv("HADOOP_TOKEN_FILE_LOCATION")); }
to
// propagate delegation related props from launcher job to MR job if (getFilePathFromEnv("HADOOP_TOKEN_FILE_LOCATION") != null) { jobConf.set("mapreduce.job.credentials.binary", getFilePathFromEnv("HADOOP_TOKEN_FILE_LOCATION")); }
We should update the documentation in WorkflowFunctionalSpec.twiki to use the getFilePathFromEnv method.
Attachments
Issue Links
- is related to
-
OOZIE-1500 Fix many OS-specific issues on Windows
- Closed