diff --git a/clients/src/main/java/org/apache/kafka/clients/producer/ProducerConfig.java b/clients/src/main/java/org/apache/kafka/clients/producer/ProducerConfig.java index 4ed083b2e79..4d121b90948 100644 --- a/clients/src/main/java/org/apache/kafka/clients/producer/ProducerConfig.java +++ b/clients/src/main/java/org/apache/kafka/clients/producer/ProducerConfig.java @@ -144,11 +144,10 @@ public class ProducerConfig extends AbstractConfig { @Deprecated public static final String BLOCK_ON_BUFFER_FULL_CONFIG = "block.on.buffer.full"; private static final String BLOCK_ON_BUFFER_FULL_DOC = "When our memory buffer is exhausted we must either stop accepting new records (block) or throw errors. " - + "By default this setting is false and the producer will no longer throw a BufferExhaustException but instead will use the {@link #MAX_BLOCK_MS_CONFIG} " - + "value to block, after which it will throw a TimeoutException. Setting this property to true will set the " + MAX_BLOCK_MS_CONFIG + " to Long.MAX_VALUE." + + "By default this setting is false and the producer will no longer throw a BufferExhaustException but instead will use the " + MAX_BLOCK_MS_CONFIG + " " + + "value to block, after which it will throw a TimeoutException. Setting this property to true will set the " + MAX_BLOCK_MS_CONFIG + " to Long.MAX_VALUE. " + "Also if this property is set to true, parameter " + METADATA_FETCH_TIMEOUT_CONFIG + " is not longer honored." - + "

" - + "This parameter is deprecated and will be removed in a future release. " + + "

This parameter is deprecated and will be removed in a future release. " + "Parameter " + MAX_BLOCK_MS_CONFIG + " should be used instead."; /** buffer.memory */ diff --git a/docs/documentation.html b/docs/documentation.html index ddc31021801..31dc03960c4 100644 --- a/docs/documentation.html +++ b/docs/documentation.html @@ -123,7 +123,8 @@ Prior releases: 0.7.x, 7.2 Encryption and Authentication using SSL

  • 7.3 Authentication using SASL
  • 7.4 Authorization and ACLs
  • -
  • 7.5 ZooKeeper Authentication
  • +
  • 7.5 Incorporating Security Features in a Running Cluster
  • +
  • 7.6 ZooKeeper Authentication