xiang092689 commented on issue #3952:
URL: https://github.com/apache/bookkeeper/issues/3952#issuecomment-1543278855
why `org.apache.bookkeeper.client.ReadLastConfirmedOp readEntryComplete`
need checkCovered before callback?
```
if (heardValidResponse
&& coverageSet.checkCovered()
&& !completed) {
completed = true;
if (LOG.isDebugEnabled()) {
LOG.debug("Read Complete with enough validResponses for
ledger: {}, entry: {}",
ledgerId, entryId);
}
cb.readLastConfirmedDataComplete(BKException.Code.OK,
maxRecoveredData);
return;
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]