KAFKA-9587: Add omitted configs in KafkaProducer javadoc (#8150)

Simple javadoc fix that aligns the properties with the text. 

Reviewers: Konstantine Karantasis <k.karantasis@gmail.com>
This commit is contained in:
Lee Dongjin 2020-10-14 14:23:43 +09:00 committed by GitHub
parent 8118b6c9f9
commit 7e9dec707d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -101,6 +101,8 @@ import java.util.concurrent.atomic.AtomicReference;
* Properties props = new Properties();
* props.put("bootstrap.servers", "localhost:9092");
* props.put("acks", "all");
* props.put("retries", 0);
* props.put("linger.ms", 1);
* props.put("key.serializer", "org.apache.kafka.common.serialization.StringSerializer");
* props.put("value.serializer", "org.apache.kafka.common.serialization.StringSerializer");
*