MINOR: Correct RemoteLogManager.getLeaderEpochEntries comment (#20181)
CI / build (push) Waiting to run Details

The comment on the RemoteLogManager.getLeaderEpochEntries method has a
small error description,it should be start(inclusive)and end(exclusive).

Reviewers: Ken Huang <s7133700@gmail.com>, Lan Ding <isDing_L@163.com>,
 Chia-Ping Tsai <chia7712@gmail.com>
This commit is contained in:
majialong 2025-07-19 00:04:03 +08:00 committed by GitHub
parent 9572d19c59
commit 9b542b6ea2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -764,7 +764,7 @@ public class RemoteLogManager implements Closeable, AsyncOffsetReader {
}
/**
* Returns the leader epoch entries within the range of the given start[exclusive] and end[inclusive] offset.
* Returns the leader epoch entries within the range of the given start (inclusive) and end (exclusive) offset.
* <p>
* Visible for testing.
*