Skip to content
Snippets Groups Projects
Commit d64806b3 authored by Marcelo Vanzin's avatar Marcelo Vanzin Committed by Josh Rosen
Browse files

[SPARK-11314][BUILD][HOTFIX] Add exclusion for moved YARN classes.

Author: Marcelo Vanzin <vanzin@cloudera.com>

Closes #10147 from vanzin/SPARK-11314.
parent 302d68de
No related branches found
No related tags found
No related merge requests found
...@@ -159,7 +159,10 @@ object MimaExcludes { ...@@ -159,7 +159,10 @@ object MimaExcludes {
// SPARK-3580 Add getNumPartitions method to JavaRDD // SPARK-3580 Add getNumPartitions method to JavaRDD
ProblemFilters.exclude[MissingMethodProblem]( ProblemFilters.exclude[MissingMethodProblem](
"org.apache.spark.api.java.JavaRDDLike.getNumPartitions") "org.apache.spark.api.java.JavaRDDLike.getNumPartitions")
) ) ++
// SPARK-11314: YARN backend moved to yarn sub-module and MiMA complains even though it's a
// private class.
MimaBuild.excludeSparkClass("scheduler.cluster.YarnSchedulerBackend$YarnSchedulerEndpoint")
case v if v.startsWith("1.5") => case v if v.startsWith("1.5") =>
Seq( Seq(
MimaBuild.excludeSparkPackage("network"), MimaBuild.excludeSparkPackage("network"),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment