aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorPatrick Wendell <pwendell@gmail.com>2014-06-21 13:02:49 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-06-21 13:02:49 -0700
commit0a432d6a05d2a8f1f8f5e6e851f5174c98a64d1d (patch)
tree6f571eeeeb99827559d885836b722ac459f10e34 /project
parentec935abce13b60f353236566da149c0c87bb1002 (diff)
downloadspark-0a432d6a05d2a8f1f8f5e6e851f5174c98a64d1d.tar.gz
spark-0a432d6a05d2a8f1f8f5e6e851f5174c98a64d1d.tar.bz2
spark-0a432d6a05d2a8f1f8f5e6e851f5174c98a64d1d.zip
HOTFIX: Fix missing MIMA ignore
Diffstat (limited to 'project')
-rw-r--r--project/MimaExcludes.scala2
1 files changed, 2 insertions, 0 deletions
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index 042fdfcc47..af620d6160 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -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.