Repository: spark Updated Branches: refs/heads/master 6c746ba3a -> 7863ecca3
HOTFIX: Ignore streaming UI test This is currently causing many builds to hang. https://issues.apache.org/jira/browse/SPARK-1530 Author: Patrick Wendell <[email protected]> Closes #440 from pwendell/uitest-fix and squashes the following commits: 9a143dc [Patrick Wendell] Ignore streaming UI test Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/7863ecca Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/7863ecca Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/7863ecca Branch: refs/heads/master Commit: 7863ecca35be9af1eca0dfe5fd8806c5dd710fd6 Parents: 6c746ba Author: Patrick Wendell <[email protected]> Authored: Thu Apr 17 17:33:24 2014 -0700 Committer: Patrick Wendell <[email protected]> Committed: Thu Apr 17 17:33:24 2014 -0700 ---------------------------------------------------------------------- streaming/src/test/scala/org/apache/spark/streaming/UISuite.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/7863ecca/streaming/src/test/scala/org/apache/spark/streaming/UISuite.scala ---------------------------------------------------------------------- diff --git a/streaming/src/test/scala/org/apache/spark/streaming/UISuite.scala b/streaming/src/test/scala/org/apache/spark/streaming/UISuite.scala index 031e93a..2a0db75 100644 --- a/streaming/src/test/scala/org/apache/spark/streaming/UISuite.scala +++ b/streaming/src/test/scala/org/apache/spark/streaming/UISuite.scala @@ -26,7 +26,8 @@ import org.scalatest.time.SpanSugar._ class UISuite extends FunSuite { - test("streaming tab in spark UI") { + // Ignored: See SPARK-1530 + ignore("streaming tab in spark UI") { val ssc = new StreamingContext("local", "test", Seconds(1)) eventually(timeout(10 seconds), interval(50 milliseconds)) { val html = Source.fromURL(ssc.sparkContext.ui.appUIAddress).mkString
