Skip to content

Commit 155aeb2

Browse files
committed
Saw a test failure of the executors not coming up in time, bumping the timeouts.
1 parent 17a6a3f commit 155aeb2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

core/src/test/scala/org/apache/spark/storage/BlockManagerDecommissionSuite.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,15 +130,15 @@ class BlockManagerDecommissionSuite extends SparkFunSuite with LocalSparkContext
130130
// Wait for the first executor to start
131131
TestUtils.waitUntilExecutorsUp(sc = sc,
132132
numExecutors = 1,
133-
timeout = 10000) // 10s
133+
timeout = 20000) // 20s
134134

135135
// Start the computation of RDD - this step will also cache the RDD
136136
val asyncCount = testRdd.countAsync()
137137

138138
// Wait for all of the executors to start
139139
TestUtils.waitUntilExecutorsUp(sc = sc,
140140
numExecutors = numExecs,
141-
timeout = 10000) // 10s
141+
timeout = 30000) // 30s
142142

143143
// Wait for the job to have started.
144144
taskStartSem.acquire(1)

0 commit comments

Comments
 (0)