From 082cf2f9ef91727ad6e84dcb9101c3eeb6cfae01 Mon Sep 17 00:00:00 2001 From: Wouter Poncin Date: Tue, 14 May 2019 08:24:51 +0200 Subject: [PATCH] Fixed typo in comments in SenderConfig.java Kakfa -> Kafka --- .../main/java/com/codenotfound/kafka/producer/SenderConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-kafka-hello-world/src/main/java/com/codenotfound/kafka/producer/SenderConfig.java b/spring-kafka-hello-world/src/main/java/com/codenotfound/kafka/producer/SenderConfig.java index e4cb5bc..1c82706 100644 --- a/spring-kafka-hello-world/src/main/java/com/codenotfound/kafka/producer/SenderConfig.java +++ b/spring-kafka-hello-world/src/main/java/com/codenotfound/kafka/producer/SenderConfig.java @@ -20,7 +20,7 @@ public class SenderConfig { @Bean public Map producerConfigs() { Map props = new HashMap<>(); - // list of host:port pairs used for establishing the initial connections to the Kakfa cluster + // list of host:port pairs used for establishing the initial connections to the Kafka cluster props.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, bootstrapServers); props.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG,