Repository: kafka Updated Branches: refs/heads/trunk 33d745e2d -> 77fa0b116
KAFKA-3406; Update CommonClientConfigs.RETRY_BACKOFF_MS_DOC doc string Author: Manikumar reddy O <[email protected]> Reviewers: Sriharsha Chintalapani <[email protected]>, Ismael Juma <[email protected]> Closes #1230 from omkreddy/KAFKA-3406 Project: http://git-wip-us.apache.org/repos/asf/kafka/repo Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/77fa0b11 Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/77fa0b11 Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/77fa0b11 Branch: refs/heads/trunk Commit: 77fa0b116f0cc8aba37884a1a5d487f8683f7845 Parents: 33d745e Author: Manikumar reddy O <[email protected]> Authored: Wed Apr 27 00:03:00 2016 -0700 Committer: Ismael Juma <[email protected]> Committed: Wed Apr 27 00:03:00 2016 -0700 ---------------------------------------------------------------------- .../main/java/org/apache/kafka/clients/CommonClientConfigs.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kafka/blob/77fa0b11/clients/src/main/java/org/apache/kafka/clients/CommonClientConfigs.java ---------------------------------------------------------------------- diff --git a/clients/src/main/java/org/apache/kafka/clients/CommonClientConfigs.java b/clients/src/main/java/org/apache/kafka/clients/CommonClientConfigs.java index 298e1d8..2f1fe93 100644 --- a/clients/src/main/java/org/apache/kafka/clients/CommonClientConfigs.java +++ b/clients/src/main/java/org/apache/kafka/clients/CommonClientConfigs.java @@ -50,7 +50,7 @@ public class CommonClientConfigs { public static final String RECONNECT_BACKOFF_MS_DOC = "The amount of time to wait before attempting to reconnect to a given host. This avoids repeatedly connecting to a host in a tight loop. This backoff applies to all requests sent by the consumer to the broker."; public static final String RETRY_BACKOFF_MS_CONFIG = "retry.backoff.ms"; - public static final String RETRY_BACKOFF_MS_DOC = "The amount of time to wait before attempting to retry a failed fetch request to a given topic partition. This avoids repeated fetching-and-failing in a tight loop."; + public static final String RETRY_BACKOFF_MS_DOC = "The amount of time to wait before attempting to retry a failed request to a given topic partition. This avoids repeatedly sending requests in a tight loop under some failure scenarios."; public static final String METRICS_SAMPLE_WINDOW_MS_CONFIG = "metrics.sample.window.ms"; public static final String METRICS_SAMPLE_WINDOW_MS_DOC = "The window of time a metrics sample is computed over.";
