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,