Skip to content

Commit d28b24d

Browse files
committed
Use IncompatibleMethTypeProblem instead of MissingMethodProblem.
1 parent 5576054 commit d28b24d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project/MimaExcludes.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ object MimaExcludes {
350350
ProblemFilters.exclude[MissingMethodProblem]("org.apache.spark.mllib.regression.LinearRegressionWithSGD.this")
351351
) ++ Seq(
352352
// SPARK-15250 Remove deprecated json API in DataFrameReader
353-
ProblemFilters.exclude[MissingMethodProblem]("org.apache.spark.sql.DataFrameReader.json")
353+
ProblemFilters.exclude[IncompatibleMethTypeProblem]("org.apache.spark.sql.DataFrameReader.json")
354354
) ++ Seq(
355355
// SPARK-13920: MIMA checks should apply to @Experimental and @DeveloperAPI APIs
356356
ProblemFilters.exclude[DirectMissingMethodProblem]("org.apache.spark.Aggregator.combineCombinersByKey"),

0 commit comments

Comments
 (0)