File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,13 @@ object MimaExcludes {
39
39
Seq (
40
40
// [SPARK-16199][SQL] Add a method to list the referenced columns in data source Filter
41
41
ProblemFilters .exclude[ReversedMissingMethodProblem ](" org.apache.spark.sql.sources.Filter.references" )
42
+ ) ++
43
+ Seq (
44
+ // [SPARK-16856] [WEBUI] [CORE] Link the application's executor page to the master's UI
45
+ ProblemFilters .exclude[MissingTypesProblem ](" org.apache.spark.scheduler.SparkListenerApplicationStart$" )
46
+ ProblemFilters .exclude[DirectMissingMethodProblem ](" org.apache.spark.scheduler.SparkListenerApplicationStart.apply" )
47
+ ProblemFilters .exclude[DirectMissingMethodProblem ](" org.apache.spark.scheduler.SparkListenerApplicationStart.copy" )
48
+ ProblemFilters .exclude[DirectMissingMethodProblem ](" org.apache.spark.scheduler.SparkListenerApplicationStart.this" )
42
49
)
43
50
}
44
51
You can’t perform that action at this time.
0 commit comments