Skip to content
Snippets Groups Projects
Commit 0a432d6a authored by Patrick Wendell's avatar Patrick Wendell
Browse files

HOTFIX: Fix missing MIMA ignore

parent ec935abc
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,7 @@
#
set -o pipefail
set -e
# Go to the Spark project root directory
FWDIR="$(cd `dirname $0`/..; pwd)"
......
......@@ -36,6 +36,8 @@ object MimaExcludes {
case v if v.startsWith("1.1") =>
Seq(MimaBuild.excludeSparkPackage("graphx")) ++
Seq(
// Adding new method to JavaRDLike trait - we should probably mark this as a developer API.
ProblemFilters.exclude[MissingMethodProblem]("org.apache.spark.api.java.JavaRDDLike.partitions"),
// We made a mistake earlier (ed06500d3) in the Java API to use default parameter values
// for countApproxDistinct* functions, which does not work in Java. We later removed
// them, and use the following to tell Mima to not care about them.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment