Skip to content

Commit

Permalink
Increase timeout in end-to-end tests
Browse files Browse the repository at this point in the history
...to avoid a potential YAFT, yet another flaky test.
  • Loading branch information
Andrew Or committed Jan 30, 2015
1 parent bf696ff commit 6c57b4b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ class StandaloneRestProtocolSuite extends FunSuite with BeforeAndAfterAll with B
}

/** Wait until the given driver has finished running up to the specified timeout. */
private def waitUntilFinished(driverId: String, maxSeconds: Int = 10): Unit = {
private def waitUntilFinished(driverId: String, maxSeconds: Int = 30): Unit = {
var finished = false
val expireTime = System.currentTimeMillis + maxSeconds * 1000
while (!finished) {
Expand Down

0 comments on commit 6c57b4b

Please sign in to comment.