Repository: spark Updated Branches: refs/heads/master 3bf7ceebb -> 0df02ca46
[HOT FIX] MiMa tests are broken This is blocking #3353 and other patches. Author: Andrew Or <[email protected]> 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 Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/0df02ca4 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/0df02ca4 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/0df02ca4 Branch: refs/heads/master Commit: 0df02ca463a4126e5437b37114c6759a57ab71ee Parents: 3bf7cee Author: Andrew Or <[email protected]> Authored: Wed Nov 19 14:03:44 2014 -0800 Committer: Patrick Wendell <[email protected]> Committed: Wed Nov 19 14:03:44 2014 -0800 ---------------------------------------------------------------------- project/MimaExcludes.scala | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/0df02ca4/project/MimaExcludes.scala ---------------------------------------------------------------------- diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala index 6ab2d1b..94de14d 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") => --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
