Skip to content

Commit 253031d

Browse files
committed
[Streaming][Kafka][SPARK-8127] mima exclusion for change to private method
1 parent 8974b9e commit 253031d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

project/MimaExcludes.scala

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ object MimaExcludes {
4444
// JavaRDDLike is not meant to be extended by user programs
4545
ProblemFilters.exclude[MissingMethodProblem](
4646
"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"),
4750
// Mima false positive (was a private[spark] class)
4851
ProblemFilters.exclude[MissingClassProblem](
4952
"org.apache.spark.util.collection.PairIterator")

0 commit comments

Comments
 (0)