aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorcody koeninger <cody@koeninger.org>2015-06-07 21:42:45 +0100
committerSean Owen <sowen@cloudera.com>2015-06-07 21:42:45 +0100
commitb127ff8a0c5fb704da574d101a2d0e27ac5f463a (patch)
treec36566079d8bd031caf69899f1c0440cd0e5b206 /project
parente84815dc333a69368a48e0152f02934980768a14 (diff)
downloadspark-b127ff8a0c5fb704da574d101a2d0e27ac5f463a.tar.gz
spark-b127ff8a0c5fb704da574d101a2d0e27ac5f463a.tar.bz2
spark-b127ff8a0c5fb704da574d101a2d0e27ac5f463a.zip
[SPARK-2808] [STREAMING] [KAFKA] cleanup tests from
see if requiring producer acks eliminates the need for waitUntilLeaderOffset calls in tests Author: cody koeninger <cody@koeninger.org> Closes #5921 from koeninger/kafka-0.8.2-test-cleanup and squashes the following commits: 1e89dc8 [cody koeninger] Merge branch 'master' into kafka-0.8.2-test-cleanup 4662828 [cody koeninger] [Streaming][Kafka] filter mima issue for removal of method from private test class af1e083 [cody koeninger] Merge branch 'master' into kafka-0.8.2-test-cleanup 4298ac2 [cody koeninger] [Streaming][Kafka] update comment to trigger jenkins attempt 1274afb [cody koeninger] [Streaming][Kafka] see if requiring producer acks eliminates the need for waitUntilLeaderOffset calls in tests
Diffstat (limited to 'project')
-rw-r--r--project/MimaExcludes.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index 73e4bfd78e..8a93ca2999 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -47,6 +47,9 @@ object MimaExcludes {
// Mima false positive (was a private[spark] class)
ProblemFilters.exclude[MissingClassProblem](
"org.apache.spark.util.collection.PairIterator"),
+ // Removing a testing method from a private class
+ ProblemFilters.exclude[MissingMethodProblem](
+ "org.apache.spark.streaming.kafka.KafkaTestUtils.waitUntilLeaderOffset"),
// SQL execution is considered private.
excludePackage("org.apache.spark.sql.execution")
)