aboutsummaryrefslogtreecommitdiff
path: root/sql/hive
diff options
context:
space:
mode:
authorMichael Armbrust <michael@databricks.com>2014-10-24 14:03:03 -0700
committerJosh Rosen <joshrosen@databricks.com>2014-10-24 14:03:03 -0700
commit3a906c6631a914da8ede3111c63f89a0dac3f369 (patch)
tree7d3cfcf8b7fc2de20ce578e5e9afc9057e78d7f2 /sql/hive
parent07e439b4fe1cea4cee8ec8e39803b8349078f119 (diff)
downloadspark-3a906c6631a914da8ede3111c63f89a0dac3f369.tar.gz
spark-3a906c6631a914da8ede3111c63f89a0dac3f369.tar.bz2
spark-3a906c6631a914da8ede3111c63f89a0dac3f369.zip
[HOTFIX][SQL] Remove sleep on reset() failure.
Author: Michael Armbrust <michael@databricks.com> Closes #2934 from marmbrus/patch-2 and squashes the following commits: a96dab2 [Michael Armbrust] Remove sleep on reset() failure.
Diffstat (limited to 'sql/hive')
-rw-r--r--sql/hive/src/main/scala/org/apache/spark/sql/hive/TestHive.scala4
1 files changed, 0 insertions, 4 deletions
diff --git a/sql/hive/src/main/scala/org/apache/spark/sql/hive/TestHive.scala b/sql/hive/src/main/scala/org/apache/spark/sql/hive/TestHive.scala
index 0f74fe8943..c6ff4ea6de 100644
--- a/sql/hive/src/main/scala/org/apache/spark/sql/hive/TestHive.scala
+++ b/sql/hive/src/main/scala/org/apache/spark/sql/hive/TestHive.scala
@@ -438,10 +438,6 @@ class TestHiveContext(sc: SparkContext) extends HiveContext(sc) {
} catch {
case e: Exception =>
logError("FATAL ERROR: Failed to reset TestDB state.", e)
- // At this point there is really no reason to continue, but the test framework traps exits.
- // So instead we just pause forever so that at least the developer can see where things
- // started to go wrong.
- Thread.sleep(100000)
}
}
}