Details
Description
In KafkaConsumer#commitAsync that does not take offset parameters, we have the following logic:
public void commitAsync(OffsetCommitCallback callback) { acquireAndEnsureOpen(); try { commitAsync(subscriptions.allConsumed(), callback); } finally { release(); } }
This function calls another commitAsync with default all consumed offset which also call `acquireAndEnsureOpen`.
Attachments
Issue Links
- links to