This is an automated email from the ASF dual-hosted git repository.
guozhang pushed a commit to branch 0.10.2
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/0.10.2 by this push:
new 1f4c094 KAFKA-7990: Close streams at the end in KafkaStreamsTest
(#6334)
1f4c094 is described below
commit 1f4c0944eafc4947f6a5cc426c3e195f40810d6d
Author: Guozhang Wang <[email protected]>
AuthorDate: Tue Feb 26 22:28:02 2019 -0800
KAFKA-7990: Close streams at the end in KafkaStreamsTest (#6334)
This fix is already in 2.1+ branches, but did not get into older branches.
Should be cherry-picked all the way to 0.10.2.
Reviewers: Matthias J. Sax <[email protected]>
---
streams/src/test/java/org/apache/kafka/streams/KafkaStreamsTest.java | 3 +++
1 file changed, 3 insertions(+)
diff --git
a/streams/src/test/java/org/apache/kafka/streams/KafkaStreamsTest.java
b/streams/src/test/java/org/apache/kafka/streams/KafkaStreamsTest.java
index 832883a..adc5866 100644
--- a/streams/src/test/java/org/apache/kafka/streams/KafkaStreamsTest.java
+++ b/streams/src/test/java/org/apache/kafka/streams/KafkaStreamsTest.java
@@ -358,6 +358,9 @@ public class KafkaStreamsTest {
} finally {
// stop the thread so we don't interfere with other tests etc
keepRunning.set(false);
+ if (streams != null) {
+ streams.close();
+ }
}
}