Skip to content

Commit

Permalink
remove eventually
Browse files Browse the repository at this point in the history
  • Loading branch information
Ngone51 committed Jan 18, 2025
1 parent 8ea5dd4 commit 1df1831
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,10 @@ class ExternalShuffleServiceSuite extends ShuffleSuite with BeforeAndAfterAll wi

// Now Spark will receive FetchFailed, and not retry the stage due to "spark.test.noStageRetry"
// being set.
eventually(timeout(60.seconds), interval(100.milliseconds)) {
val e = intercept[SparkException] {
rdd.count()
}
e.getMessage should include("Fetch failure will not retry stage due to testing config")
val e = intercept[SparkException] {
rdd.count()
}
e.getMessage should include("Fetch failure will not retry stage due to testing config")
}

test("SPARK-25888: using external shuffle service fetching disk persisted blocks") {
Expand Down

0 comments on commit 1df1831

Please sign in to comment.