Repository: spark
Updated Branches:
  refs/heads/branch-1.0 322527259 -> 1c0dc3733


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
(cherry picked from commit 7863ecca35be9af1eca0dfe5fd8806c5dd710fd6)

Signed-off-by: Patrick Wendell <[email protected]>


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/1c0dc373
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/1c0dc373
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/1c0dc373

Branch: refs/heads/branch-1.0
Commit: 1c0dc373365e64348566ca9fdb8349bf43b82e4e
Parents: 3225272
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:36 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/1c0dc373/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

Reply via email to