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 7529810 commit e90c37bCopy full SHA for e90c37b
project/MimaExcludes.scala
@@ -71,7 +71,12 @@ object MimaExcludes {
71
"org.apache.spark.storage.TachyonStore.putValues")
72
) ++
73
Seq(
74
- ProblemFilters.exclude[MissingMethodProblem]("org.apache.spark.streaming.flume.FlumeReceiver.this")
+ ProblemFilters.exclude[MissingMethodProblem](
75
+ "org.apache.spark.streaming.flume.FlumeReceiver.this"),
76
+ ProblemFilters.exclude[IncompatibleMethTypeProblem](
77
+ "org.apache.spark.streaming.kafka.KafkaUtils.createStream"),
78
79
+ "org.apache.spark.streaming.kafka.KafkaReceiver.this")
80
81
Seq( // Ignore some private methods in ALS.
82
ProblemFilters.exclude[MissingMethodProblem](
0 commit comments