aboutsummaryrefslogtreecommitdiff
path: root/project/MimaExcludes.scala
diff options
context:
space:
mode:
authorAndrew Or <andrew@databricks.com>2016-02-08 17:23:33 -0800
committerJosh Rosen <joshrosen@databricks.com>2016-02-08 17:23:33 -0800
commiteeaf45b92695c577279f3a17d8c80ee40425e9aa (patch)
tree46ab78335e446ea77ac071225af5141b570a9f9b /project/MimaExcludes.scala
parentff0af0ddfa4d198b203c3a39f8532cfbd4f4e027 (diff)
downloadspark-eeaf45b92695c577279f3a17d8c80ee40425e9aa.tar.gz
spark-eeaf45b92695c577279f3a17d8c80ee40425e9aa.tar.bz2
spark-eeaf45b92695c577279f3a17d8c80ee40425e9aa.zip
[SPARK-10620][SPARK-13054] Minor addendum to #10835
Additional changes to #10835, mainly related to style and visibility. This patch also adds back a few deprecated methods for backward compatibility. Author: Andrew Or <andrew@databricks.com> Closes #10958 from andrewor14/task-metrics-to-accums-followups.
Diffstat (limited to 'project/MimaExcludes.scala')
-rw-r--r--project/MimaExcludes.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index 8b1a7303fc..9209094385 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -187,7 +187,8 @@ object MimaExcludes {
) ++ Seq(
// SPARK-12896 Send only accumulator updates to driver, not TaskMetrics
ProblemFilters.exclude[IncompatibleMethTypeProblem]("org.apache.spark.Accumulable.this"),
- ProblemFilters.exclude[IncompatibleMethTypeProblem]("org.apache.spark.Accumulator.this")
+ ProblemFilters.exclude[IncompatibleMethTypeProblem]("org.apache.spark.Accumulator.this"),
+ ProblemFilters.exclude[MissingMethodProblem]("org.apache.spark.Accumulator.initialValue")
) ++ Seq(
// SPARK-12692 Scala style: Fix the style violation (Space before "," or ":")
ProblemFilters.exclude[MissingMethodProblem]("org.apache.spark.streaming.flume.sink.SparkSink.org$apache$spark$streaming$flume$sink$Logging$$log_"),