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/04/18 02:33:30 UTC

git commit: HOTFIX: Ignore streaming UI test

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 <pw...@gmail.com>

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 <pw...@gmail.com>
Authored: Thu Apr 17 17:33:24 2014 -0700
Committer: Patrick Wendell <pw...@gmail.com>
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