aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorAndrew Or <andrew@databricks.com>2014-11-19 14:03:44 -0800
committerPatrick Wendell <pwendell@gmail.com>2014-11-19 14:03:44 -0800
commit0df02ca463a4126e5437b37114c6759a57ab71ee (patch)
tree47e9f7a199bbc43e9e043b55da50f607a9bcaaf1 /project
parent3bf7ceebb10741a8b32e0c00f0edfd3a222ec5cd (diff)
downloadspark-0df02ca463a4126e5437b37114c6759a57ab71ee.tar.gz
spark-0df02ca463a4126e5437b37114c6759a57ab71ee.tar.bz2
spark-0df02ca463a4126e5437b37114c6759a57ab71ee.zip
[HOT FIX] MiMa tests are broken
This is blocking #3353 and other patches. Author: Andrew Or <andrew@databricks.com> Closes #3371 from andrewor14/mima-hot-fix and squashes the following commits: 842d059 [Andrew Or] Move excludes to the right section c4d4f4e [Andrew Or] MIMA hot fix
Diffstat (limited to 'project')
-rw-r--r--project/MimaExcludes.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index 6ab2d1b04c..94de14ddbd 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -41,6 +41,12 @@ object MimaExcludes {
// the maven-generated artifacts in the 1.2 build.
MimaBuild.excludeSparkPackage("unused"),
ProblemFilters.exclude[MissingClassProblem]("com.google.common.base.Optional")
+ ) ++ Seq(
+ // SPARK-2321
+ ProblemFilters.exclude[MissingMethodProblem](
+ "org.apache.spark.SparkStageInfoImpl.this"),
+ ProblemFilters.exclude[MissingMethodProblem](
+ "org.apache.spark.SparkStageInfo.submissionTime")
)
case v if v.startsWith("1.2") =>