We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26baad9 commit f37be91Copy full SHA for f37be91
project/MimaExcludes.scala
@@ -80,6 +80,10 @@ object MimaExcludes {
80
"org.apache.spark.ml.regression.LeastSquaresAggregator.add"),
81
ProblemFilters.exclude[MissingMethodProblem](
82
"org.apache.spark.ml.regression.LeastSquaresCostFun.this")
83
+ ) ++ Seq(
84
+ // SPARK-8029. False positive, this is a @Private java class
85
+ ProblemFilters.exclude[MissingMethodProblem](
86
+ "org.apache.spark.shuffle.unsafe.UnsafeShuffleWriter.this")
87
)
88
case v if v.startsWith("1.5") =>
89
Seq(
0 commit comments