MINOR: fix typo for QUORUM_FETCH_TIMEOUT_MS_DOC (#12132)

Reviewers: Luke Chen <showuon@gmail.com>
This commit is contained in:
Jacklee 2022-05-10 10:47:23 +08:00 committed by GitHub
parent b485f92647
commit 2a656aea27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ public class RaftConfig {
public static final String QUORUM_FETCH_TIMEOUT_MS_CONFIG = QUORUM_PREFIX + "fetch.timeout.ms";
public static final String QUORUM_FETCH_TIMEOUT_MS_DOC = "Maximum time without a successful fetch from " +
"the current leader before becoming a candidate and triggering a election for voters; Maximum time without " +
"the current leader before becoming a candidate and triggering an election for voters; Maximum time without " +
"receiving fetch from a majority of the quorum before asking around to see if there's a new epoch for leader";
public static final int DEFAULT_QUORUM_FETCH_TIMEOUT_MS = 2_000;