Skip to content

Commit

Permalink
Address MM comments
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Valeri <fedevaleri@gmail.com>
  • Loading branch information
fvaleri committed Jul 21, 2023
1 parent 4eed791 commit b904cda
Showing 1 changed file with 5 additions and 5 deletions.
Expand Up @@ -101,7 +101,7 @@
* until the broker is up again.
* <p>
* Caveats:
* 1. The tools needs all brokers to be up at startup time.
* 1. The tool needs all brokers to be up at startup time.
* 2. The tool doesn't handle out of range offsets.
*/
public class ReplicaVerificationTool {
Expand Down Expand Up @@ -365,10 +365,10 @@ long reportInterval() {
}

private static class MessageInfo {
private final int replicaId;
private final long offset;
private final long nextOffset;
private final long checksum;
final int replicaId;
final long offset;
final long nextOffset;
final long checksum;

MessageInfo(int replicaId, long offset, long nextOffset, long checksum) {
this.replicaId = replicaId;
Expand Down

0 comments on commit b904cda

Please sign in to comment.