Repository: spark
Updated Branches:
  refs/heads/master fe6efacc0 -> 4bb12488d


SPARK-2757 [BUILD] [STREAMING] Add Mima test for Spark Sink after 1.10 is 
released

Re-enable MiMa for Streaming Flume Sink module, now that 1.1.0 is released, per 
the JIRA TO-DO. That's pretty much all there is to this.

Author: Sean Owen <so...@cloudera.com>

Closes #3842 from srowen/SPARK-2757 and squashes the following commits:

50ff80e [Sean Owen] Exclude apparent false positive turned up by re-enabling 
MiMa checks for Streaming Flume Sink
0e5ba5c [Sean Owen] Re-enable MiMa for Streaming Flume Sink module


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/4bb12488
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/4bb12488
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/4bb12488

Branch: refs/heads/master
Commit: 4bb12488d56ea651c56d9688996b464b99095582
Parents: fe6efac
Author: Sean Owen <so...@cloudera.com>
Authored: Wed Dec 31 16:59:17 2014 -0800
Committer: Tathagata Das <tathagata.das1...@gmail.com>
Committed: Wed Dec 31 16:59:17 2014 -0800

----------------------------------------------------------------------
 project/MimaExcludes.scala | 5 +++++
 project/SparkBuild.scala   | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/4bb12488/project/MimaExcludes.scala
----------------------------------------------------------------------
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index 230239a..c377e5c 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -53,6 +53,11 @@ object MimaExcludes {
               "org.apache.spark.mllib.linalg.Matrices.randn"),
             ProblemFilters.exclude[MissingMethodProblem](
               "org.apache.spark.mllib.linalg.Matrices.rand")
+          ) ++ Seq(
+            // SPARK-2757
+            ProblemFilters.exclude[IncompatibleResultTypeProblem](
+              
"org.apache.spark.streaming.flume.sink.SparkAvroCallbackHandler." +
+                "removeAndGetProcessor")
           )
 
         case v if v.startsWith("1.2") =>

http://git-wip-us.apache.org/repos/asf/spark/blob/4bb12488/project/SparkBuild.scala
----------------------------------------------------------------------
diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index c512b62..46a54c6 100644
--- a/project/SparkBuild.scala
+++ b/project/SparkBuild.scala
@@ -166,7 +166,7 @@ object SparkBuild extends PomBuild {
 
   // TODO: Add Sql to mima checks
   allProjects.filterNot(x => Seq(spark, sql, hive, hiveThriftServer, catalyst, 
repl,
-    streamingFlumeSink, networkCommon, networkShuffle, 
networkYarn).contains(x)).foreach {
+    networkCommon, networkShuffle, networkYarn).contains(x)).foreach {
       x => enable(MimaBuild.mimaSettings(sparkHome, x))(x)
     }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to