Skip to content

Commit

Permalink
Merge pull request #83 from KU-Taverse/feat/dis
Browse files Browse the repository at this point in the history
[fix] producer 주소 변경
  • Loading branch information
kamothi authored Oct 8, 2024
2 parents bc35e80 + 926dcb3 commit a666d6f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class KafkaProducerConfig {
public ProducerFactory<String, String> producerFactory(){
Map<String, Object> properties = new HashMap<>();

properties.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG,"172.31.38.20:9094");
properties.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG,"172.31.38.20:9092");
properties.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, StringSerializer.class);
properties.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, StringSerializer.class);

Expand Down

0 comments on commit a666d6f

Please sign in to comment.