We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec90e21 commit 776bc2cCopy full SHA for 776bc2c
1 file changed
project/MimaExcludes.scala
@@ -37,6 +37,13 @@ object MimaExcludes {
37
Seq(
38
MimaBuild.excludeSparkPackage("deploy"),
39
MimaBuild.excludeSparkPackage("graphx")
40
+ ) ++
41
+ // This is @DeveloperAPI, but Mima still gives false-positives:
42
+ MimaBuild.excludeSparkClass("scheduler.SparkListenerApplicationStart") ++
43
+ Seq(
44
+ // This is @Experimental, but Mima still gives false-positives:
45
+ ProblemFilters.exclude[MissingMethodProblem](
46
+ "org.apache.spark.api.java.JavaRDDLike.foreachAsync")
47
)
48
case v if v.startsWith("1.1") =>
49
0 commit comments