Skip to content

Commit 7dff13b

Browse files
committed
Merge branch '2.0.x'
2 parents 314cd34 + 8950c3e commit 7dff13b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/kafka/KafkaProperties.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public class KafkaProperties {
5757

5858
/**
5959
* Comma-delimited list of host:port pairs to use for establishing the initial
60-
* connection to the Kafka cluster. Applies to all components unless overridden.
60+
* connections to the Kafka cluster. Applies to all components unless overridden.
6161
*/
6262
private List<String> bootstrapServers = new ArrayList<>(
6363
Collections.singletonList("localhost:9092"));
@@ -230,7 +230,7 @@ public static class Consumer {
230230

231231
/**
232232
* Comma-delimited list of host:port pairs to use for establishing the initial
233-
* connection to the Kafka cluster. Overrides the global property, for consumers.
233+
* connections to the Kafka cluster. Overrides the global property, for consumers.
234234
*/
235235
private List<String> bootstrapServers;
236236

@@ -440,7 +440,7 @@ public static class Producer {
440440

441441
/**
442442
* Comma-delimited list of host:port pairs to use for establishing the initial
443-
* connection to the Kafka cluster. Overrides the global property, for producers.
443+
* connections to the Kafka cluster. Overrides the global property, for producers.
444444
*/
445445
private List<String> bootstrapServers;
446446

spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1040,11 +1040,11 @@ content into your application. Rather, pick only the properties that you need.
10401040
spring.kafka.admin.ssl.trust-store-location= # Location of the trust store file.
10411041
spring.kafka.admin.ssl.trust-store-password= # Store password for the trust store file.
10421042
spring.kafka.admin.ssl.trust-store-type= # Type of the trust store.
1043-
spring.kafka.bootstrap-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connection to the Kafka cluster. Applies to all components unless overridden.
1043+
spring.kafka.bootstrap-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connections to the Kafka cluster. Applies to all components unless overridden.
10441044
spring.kafka.client-id= # ID to pass to the server when making requests. Used for server-side logging.
10451045
spring.kafka.consumer.auto-commit-interval= # Frequency with which the consumer offsets are auto-committed to Kafka if 'enable.auto.commit' is set to true.
10461046
spring.kafka.consumer.auto-offset-reset= # What to do when there is no initial offset in Kafka or if the current offset no longer exists on the server.
1047-
spring.kafka.consumer.bootstrap-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connection to the Kafka cluster. Overrides the global property, for consumers.
1047+
spring.kafka.consumer.bootstrap-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connections to the Kafka cluster. Overrides the global property, for consumers.
10481048
spring.kafka.consumer.client-id= # ID to pass to the server when making requests. Used for server-side logging.
10491049
spring.kafka.consumer.enable-auto-commit= # Whether the consumer's offset is periodically committed in the background.
10501050
spring.kafka.consumer.fetch-max-wait= # Maximum amount of time the server blocks before answering the fetch request if there isn't sufficient data to immediately satisfy the requirement given by "fetch.min.bytes".
@@ -1080,7 +1080,7 @@ content into your application. Rather, pick only the properties that you need.
10801080
spring.kafka.listener.type=single # Listener type.
10811081
spring.kafka.producer.acks= # Number of acknowledgments the producer requires the leader to have received before considering a request complete.
10821082
spring.kafka.producer.batch-size= # Default batch size in bytes.
1083-
spring.kafka.producer.bootstrap-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connection to the Kafka cluster. Overrides the global property, for producers.
1083+
spring.kafka.producer.bootstrap-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connections to the Kafka cluster. Overrides the global property, for producers.
10841084
spring.kafka.producer.buffer-memory= # Total bytes of memory the producer can use to buffer records waiting to be sent to the server.
10851085
spring.kafka.producer.client-id= # ID to pass to the server when making requests. Used for server-side logging.
10861086
spring.kafka.producer.compression-type= # Compression type for all data generated by the producer.

0 commit comments

Comments
 (0)