Skip to content

Commit

Permalink
More issues with transient 1.4 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pwendell committed May 21, 2015
1 parent 36f549b commit 04b4f04
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion project/MimaExcludes.scala
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,14 @@ object MimaExcludes {
MimaBuild.excludeSparkPackage("unused"),
// SPARK-7805 - Some SQL test code accidentally included in src/main
ProblemFilters.exclude[MissingMethodProblem](
"org.apache.spark.sql.test.SQLTestUtils.withTable")
"org.apache.spark.sql.test.SQLTestUtils.withTable"),
// TODO: REMOVE THESE AFTER 1.4 IS RELEASED - Transient changes in 1.4
ProblemFilters.exclude[MissingClassProblem](
"org.apache.spark.status.api.v1.JsonRootResource"),
ProblemFilters.exclude[MissingClassProblem](
"org.apache.spark.status.api.v1.JsonRootResource$"),
ProblemFilters.exclude[MissingMethodProblem](
"org.apache.spark.streaming.StreamingContext.withNamedScope")
)
case v if v.startsWith("1.4") =>
Seq(
Expand Down

0 comments on commit 04b4f04

Please sign in to comment.