Skip to content

Commit 04b4f04

Browse files
committed
More issues with transient 1.4 changes
1 parent 36f549b commit 04b4f04

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

project/MimaExcludes.scala

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,14 @@ object MimaExcludes {
4343
MimaBuild.excludeSparkPackage("unused"),
4444
// SPARK-7805 - Some SQL test code accidentally included in src/main
4545
ProblemFilters.exclude[MissingMethodProblem](
46-
"org.apache.spark.sql.test.SQLTestUtils.withTable")
46+
"org.apache.spark.sql.test.SQLTestUtils.withTable"),
47+
// TODO: REMOVE THESE AFTER 1.4 IS RELEASED - Transient changes in 1.4
48+
ProblemFilters.exclude[MissingClassProblem](
49+
"org.apache.spark.status.api.v1.JsonRootResource"),
50+
ProblemFilters.exclude[MissingClassProblem](
51+
"org.apache.spark.status.api.v1.JsonRootResource$"),
52+
ProblemFilters.exclude[MissingMethodProblem](
53+
"org.apache.spark.streaming.StreamingContext.withNamedScope")
4754
)
4855
case v if v.startsWith("1.4") =>
4956
Seq(

0 commit comments

Comments
 (0)