Skip to content

Commit

Permalink
flaky test
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoloboschi committed May 20, 2024
1 parent 6ada992 commit 58eedc0
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,11 @@ private OffsetPerPartition parseOffset() throws IOException {
@Override
public void close() {
if (consumer != null) {
consumer.close();
try {
consumer.close();
} catch (org.apache.kafka.common.errors.InterruptException e) {
log.warn("Interrupted while closing Kafka consumer", e);
}
}
}

Expand Down

0 comments on commit 58eedc0

Please sign in to comment.