mirror of https://github.com/apache/kafka.git
KAFKA-12922: MirrorCheckpointTask should close topic filter (#10849)
Reviewers: Mickael Maison <mickael.maison@gmail.com> Co-authored-by: Daniel Urban <durban@cloudera.com>
This commit is contained in:
parent
d496103864
commit
8a50a5204d
|
@ -113,6 +113,7 @@ public class MirrorCheckpointTask extends SourceTask {
|
|||
public void stop() {
|
||||
long start = System.currentTimeMillis();
|
||||
stopping = true;
|
||||
Utils.closeQuietly(topicFilter, "topic filter");
|
||||
Utils.closeQuietly(offsetSyncStore, "offset sync store");
|
||||
Utils.closeQuietly(sourceAdminClient, "source admin client");
|
||||
Utils.closeQuietly(targetAdminClient, "target admin client");
|
||||
|
|
Loading…
Reference in New Issue