Skip to content

Commit 7863ecc

Browse files
committed
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 apache#440 from pwendell/uitest-fix and squashes the following commits: 9a143dc [Patrick Wendell] Ignore streaming UI test
1 parent 6c746ba commit 7863ecc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

streaming/src/test/scala/org/apache/spark/streaming/UISuite.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ import org.scalatest.time.SpanSugar._
2626

2727
class UISuite extends FunSuite {
2828

29-
test("streaming tab in spark UI") {
29+
// Ignored: See SPARK-1530
30+
ignore("streaming tab in spark UI") {
3031
val ssc = new StreamingContext("local", "test", Seconds(1))
3132
eventually(timeout(10 seconds), interval(50 milliseconds)) {
3233
val html = Source.fromURL(ssc.sparkContext.ui.appUIAddress).mkString

0 commit comments

Comments
 (0)