File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,14 @@ object MimaExcludes {
43
43
MimaBuild .excludeSparkPackage(" unused" ),
44
44
// SPARK-7805 - Some SQL test code accidentally included in src/main
45
45
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" )
47
54
)
48
55
case v if v.startsWith(" 1.4" ) =>
49
56
Seq (
You can’t perform that action at this time.
0 commit comments