Skip to content

Commit fa6a4fb

Browse files
Marcelo Vanzinrxin
authored andcommitted
[SPARK-11134][CORE] Increase LauncherBackendSuite timeout.
This test can take a little while to finish on slow / loaded machines. Author: Marcelo Vanzin <[email protected]> Closes #9235 from vanzin/SPARK-11134.
1 parent a88c66c commit fa6a4fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/test/scala/org/apache/spark/launcher/LauncherBackendSuite.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ class LauncherBackendSuite extends SparkFunSuite with Matchers {
5454
.startApplication()
5555

5656
try {
57-
eventually(timeout(10 seconds), interval(100 millis)) {
57+
eventually(timeout(30 seconds), interval(100 millis)) {
5858
handle.getAppId() should not be (null)
5959
}
6060

6161
handle.stop()
6262

63-
eventually(timeout(10 seconds), interval(100 millis)) {
63+
eventually(timeout(30 seconds), interval(100 millis)) {
6464
handle.getState() should be (SparkAppHandle.State.KILLED)
6565
}
6666
} finally {

0 commit comments

Comments
 (0)