You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ij...@apache.org on 2016/12/28 11:57:03 UTC

kafka git commit: Improve wording in GroupMinSessionTimeoutMsDoc

Repository: kafka
Updated Branches:
  refs/heads/trunk 4ca5abe8e -> 8e1395b17


Improve wording in GroupMinSessionTimeoutMsDoc

Author: Jeff Widman <je...@jeffwidman.com>

Reviewers: Ismael Juma <is...@juma.me.uk>

Closes #2291 from jeffwidman/patch-1


Project: http://git-wip-us.apache.org/repos/asf/kafka/repo
Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/8e1395b1
Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/8e1395b1
Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/8e1395b1

Branch: refs/heads/trunk
Commit: 8e1395b1702fcf7465324a3f52b391245137fd54
Parents: 4ca5abe
Author: Jeff Widman <je...@jeffwidman.com>
Authored: Wed Dec 28 11:56:35 2016 +0000
Committer: Ismael Juma <is...@juma.me.uk>
Committed: Wed Dec 28 11:56:35 2016 +0000

----------------------------------------------------------------------
 core/src/main/scala/kafka/server/KafkaConfig.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/8e1395b1/core/src/main/scala/kafka/server/KafkaConfig.scala
----------------------------------------------------------------------
diff --git a/core/src/main/scala/kafka/server/KafkaConfig.scala b/core/src/main/scala/kafka/server/KafkaConfig.scala
index d3964f7..cf9daa2 100755
--- a/core/src/main/scala/kafka/server/KafkaConfig.scala
+++ b/core/src/main/scala/kafka/server/KafkaConfig.scala
@@ -510,7 +510,7 @@ object KafkaConfig {
   val ControlledShutdownRetryBackoffMsDoc = "Before each retry, the system needs time to recover from the state that caused the previous failure (Controller fail over, replica lag etc). This config determines the amount of time to wait before retrying."
   val ControlledShutdownEnableDoc = "Enable controlled shutdown of the server"
   /** ********* Consumer coordinator configuration ***********/
-  val GroupMinSessionTimeoutMsDoc = "The minimum allowed session timeout for registered consumers. Shorter timeouts leader to quicker failure detection at the cost of more frequent consumer heartbeating, which can overwhelm broker resources."
+  val GroupMinSessionTimeoutMsDoc = "The minimum allowed session timeout for registered consumers. Shorter timeouts result in quicker failure detection at the cost of more frequent consumer heartbeating, which can overwhelm broker resources."
   val GroupMaxSessionTimeoutMsDoc = "The maximum allowed session timeout for registered consumers. Longer timeouts give consumers more time to process messages in between heartbeats at the cost of a longer time to detect failures."
   /** ********* Offset management configuration ***********/
   val OffsetMetadataMaxSizeDoc = "The maximum size for a metadata entry associated with an offset commit"