Repository: spark Updated Branches: refs/heads/master 07e439b4f -> 3a906c663
[HOTFIX][SQL] Remove sleep on reset() failure. Author: Michael Armbrust <[email protected]> Closes #2934 from marmbrus/patch-2 and squashes the following commits: a96dab2 [Michael Armbrust] Remove sleep on reset() failure. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/3a906c66 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/3a906c66 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/3a906c66 Branch: refs/heads/master Commit: 3a906c6631a914da8ede3111c63f89a0dac3f369 Parents: 07e439b Author: Michael Armbrust <[email protected]> Authored: Fri Oct 24 14:03:03 2014 -0700 Committer: Josh Rosen <[email protected]> Committed: Fri Oct 24 14:03:03 2014 -0700 ---------------------------------------------------------------------- sql/hive/src/main/scala/org/apache/spark/sql/hive/TestHive.scala | 4 ---- 1 file changed, 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/3a906c66/sql/hive/src/main/scala/org/apache/spark/sql/hive/TestHive.scala ---------------------------------------------------------------------- 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 0f74fe8..c6ff4ea 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) } } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
