Repository: spark
Updated Branches:
  refs/heads/master 8081ce8bd -> 42d5077fd


[DEPLOY] SPARK-3759: Return the exit code of the driver process

SparkSubmitDriverBootstrapper.scala now returns the exit code of the driver 
process, instead of always returning 0.

Author: Eric Eijkelenboom <e...@userreport.com>

Closes #2628 from ericeijkelenboom/master and squashes the following commits:

cc4a571 [Eric Eijkelenboom] Return the exit code of the driver process


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/42d5077f
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/42d5077f
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/42d5077f

Branch: refs/heads/master
Commit: 42d5077fd3f2c37d1cd23f4c81aa89286a74cb40
Parents: 8081ce8
Author: Eric Eijkelenboom <e...@userreport.com>
Authored: Thu Oct 2 18:04:38 2014 -0700
Committer: Andrew Or <andrewo...@gmail.com>
Committed: Thu Oct 2 18:04:38 2014 -0700

----------------------------------------------------------------------
 .../org/apache/spark/deploy/SparkSubmitDriverBootstrapper.scala   | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/42d5077f/core/src/main/scala/org/apache/spark/deploy/SparkSubmitDriverBootstrapper.scala
----------------------------------------------------------------------
diff --git 
a/core/src/main/scala/org/apache/spark/deploy/SparkSubmitDriverBootstrapper.scala
 
b/core/src/main/scala/org/apache/spark/deploy/SparkSubmitDriverBootstrapper.scala
index 38b5d8e..a64170a 100644
--- 
a/core/src/main/scala/org/apache/spark/deploy/SparkSubmitDriverBootstrapper.scala
+++ 
b/core/src/main/scala/org/apache/spark/deploy/SparkSubmitDriverBootstrapper.scala
@@ -154,7 +154,8 @@ private[spark] object SparkSubmitDriverBootstrapper {
         process.destroy()
       }
     }
-    process.waitFor()
+    val returnCode = process.waitFor()
+    sys.exit(returnCode)
   }
 
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to