You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by pw...@apache.org on 2014/01/10 03:38:14 UTC

[09/37] git commit: Removing un-used variable

Removing un-used variable


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

Branch: refs/heads/master
Commit: bbc362833b3bc34014a13be0592deca39cfd88bd
Parents: 18ad419
Author: Patrick Wendell <pw...@gmail.com>
Authored: Wed Dec 25 01:38:57 2013 -0800
Committer: Patrick Wendell <pw...@gmail.com>
Committed: Wed Dec 25 01:38:57 2013 -0800

----------------------------------------------------------------------
 .../main/scala/org/apache/spark/deploy/master/DriverState.scala    | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-spark/blob/bbc36283/core/src/main/scala/org/apache/spark/deploy/master/DriverState.scala
----------------------------------------------------------------------
diff --git a/core/src/main/scala/org/apache/spark/deploy/master/DriverState.scala b/core/src/main/scala/org/apache/spark/deploy/master/DriverState.scala
index 230dab1..93b2607 100644
--- a/core/src/main/scala/org/apache/spark/deploy/master/DriverState.scala
+++ b/core/src/main/scala/org/apache/spark/deploy/master/DriverState.scala
@@ -29,6 +29,4 @@ private[spark] object DriverState extends Enumeration {
   // KILLED: A user manually killed this driver
   // FAILED: Unable to run due to an unrecoverable error (e.g. missing jar file)
   val SUBMITTED, RUNNING, FINISHED, RELAUNCHING, UNKNOWN, KILLED, FAILED = Value
-
-  val MAX_NUM_RETRY = 10
 }