Skip to content

Commit

Permalink
[Streaming][Kafka] filter mima issue for removal of method from priva…
Browse files Browse the repository at this point in the history
…te test class
  • Loading branch information
koeninger committed Jun 4, 2015
1 parent af1e083 commit 4662828
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion project/MimaExcludes.scala
Expand Up @@ -46,7 +46,10 @@ object MimaExcludes {
"org.apache.spark.api.java.JavaRDDLike.partitioner"),
// Mima false positive (was a private[spark] class)
ProblemFilters.exclude[MissingClassProblem](
"org.apache.spark.util.collection.PairIterator")
"org.apache.spark.util.collection.PairIterator"),
// Removing a testing method from a private class
ProblemFilters.exclude[MissingMethodProblem](
"org.apache.spark.streaming.kafka.KafkaTestUtils.waitUntilLeaderOffset")
)
case v if v.startsWith("1.4") =>
Seq(
Expand Down

0 comments on commit 4662828

Please sign in to comment.