aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Reiss <charles@eecs.berkeley.edu>2012-12-13 18:39:23 -0800
committerCharles Reiss <charles@eecs.berkeley.edu>2012-12-13 18:39:23 -0800
commit24d7aa2d150ec7e20d4527c4223df183be8bb330 (patch)
treecef379ef4582c0db1bc3ff3f896f7fcc508e3958
parent829206f1a73ad860fea17705c074ea43599ee66b (diff)
downloadspark-24d7aa2d150ec7e20d4527c4223df183be8bb330.tar.gz
spark-24d7aa2d150ec7e20d4527c4223df183be8bb330.tar.bz2
spark-24d7aa2d150ec7e20d4527c4223df183be8bb330.zip
Extra whitespace in ExecutorExitCode
-rw-r--r--core/src/main/scala/spark/executor/ExecutorExitCode.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/src/main/scala/spark/executor/ExecutorExitCode.scala b/core/src/main/scala/spark/executor/ExecutorExitCode.scala
index 7fdc3b1d34..fd76029cb3 100644
--- a/core/src/main/scala/spark/executor/ExecutorExitCode.scala
+++ b/core/src/main/scala/spark/executor/ExecutorExitCode.scala
@@ -12,12 +12,15 @@ private[spark]
object ExecutorExitCode {
/** The default uncaught exception handler was reached. */
val UNCAUGHT_EXCEPTION = 50
+
/** The default uncaught exception handler was called and an exception was encountered while
logging the exception. */
val UNCAUGHT_EXCEPTION_TWICE = 51
+
/** The default uncaught exception handler was reached, and the uncaught exception was an
OutOfMemoryError. */
val OOM = 52
+
/** DiskStore failed to create a local temporary directory after many attempts. */
val DISK_STORE_FAILED_TO_CREATE_DIR = 53