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 8974b9e commit 253031dCopy full SHA for 253031d
project/MimaExcludes.scala
@@ -44,6 +44,9 @@ object MimaExcludes {
44
// JavaRDDLike is not meant to be extended by user programs
45
ProblemFilters.exclude[MissingMethodProblem](
46
"org.apache.spark.api.java.JavaRDDLike.partitioner"),
47
+ // Modification of private static method
48
+ ProblemFilters.exclude[IncompatibleMethTypeProblem](
49
+ "org.apache.spark.streaming.kafka.KafkaUtils.org$apache$spark$streaming$kafka$KafkaUtils$$leadersForRanges"),
50
// Mima false positive (was a private[spark] class)
51
ProblemFilters.exclude[MissingClassProblem](
52
"org.apache.spark.util.collection.PairIterator")
0 commit comments