Skip to content

Commit

Permalink
fix: producer 주소 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
kamothi committed Oct 8, 2024
1 parent 16bdfd3 commit 0ec0bf2
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.33.10:9094");
properties.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG,"172.31.38.20:9094");
properties.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, StringSerializer.class);
properties.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, StringSerializer.class);

Expand Down

0 comments on commit 0ec0bf2

Please sign in to comment.