Repository: kafka Updated Branches: refs/heads/trunk 441673991 -> 8068a3560
MINOR: consume from outputTopic in EosIntegrationTest.runSimpleCopyTest Previously, the code mistakenly consumed from inputTopic, which worked, but didn't actually verify that the messages were correctly copied from inputTopic to outputTopic. Author: Joel Dice <[email protected]> Reviewers: Matthias J. Sax <[email protected]>, Damian Guy <[email protected]> Closes #3522 from dicej/trunk Project: http://git-wip-us.apache.org/repos/asf/kafka/repo Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/8068a356 Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/8068a356 Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/8068a356 Branch: refs/heads/trunk Commit: 8068a3560b1896f25bdc664acd50d9c4d84f7baa Parents: 4416739 Author: Joel Dice <[email protected]> Authored: Wed Jul 12 13:06:45 2017 -0700 Committer: Damian Guy <[email protected]> Committed: Wed Jul 12 13:06:45 2017 -0700 ---------------------------------------------------------------------- .../org/apache/kafka/streams/integration/EosIntegrationTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kafka/blob/8068a356/streams/src/test/java/org/apache/kafka/streams/integration/EosIntegrationTest.java ---------------------------------------------------------------------- diff --git a/streams/src/test/java/org/apache/kafka/streams/integration/EosIntegrationTest.java b/streams/src/test/java/org/apache/kafka/streams/integration/EosIntegrationTest.java index c7f4ff4..0c3b36a 100644 --- a/streams/src/test/java/org/apache/kafka/streams/integration/EosIntegrationTest.java +++ b/streams/src/test/java/org/apache/kafka/streams/integration/EosIntegrationTest.java @@ -192,7 +192,7 @@ public class EosIntegrationTest { put(ConsumerConfig.ISOLATION_LEVEL_CONFIG, IsolationLevel.READ_COMMITTED.name().toLowerCase(Locale.ROOT)); } }), - inputTopic, + outputTopic, inputData.size() );
