Skip to content
Snippets Groups Projects
Commit 21047d92 authored by Denny's avatar Denny
Browse files

Protect from setting null environment variables.

parent fa41d50f
No related branches found
No related tags found
No related merge requests found
......@@ -116,7 +116,11 @@ private[spark] class ExecutorRunner(
val builder = new ProcessBuilder(command: _*).directory(executorDir)
val env = builder.environment()
for ((key, value) <- jobDesc.command.environment) {
env.put(key, value)
if (value == null) {
logInfo("Environment variable not set: " + key)
} else {
env.put(key, value)
}
}
// In case we are running this from within the Spark Shell
// so we are not creating a parent process.
......
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