Skip to content

Commit

Permalink
Merge pull request #80 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 67f3b70 + 2544618 commit 08bb58a
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,"127.0.0.1:9092");
properties.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG,"172.31.33.10: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 08bb58a

Please sign in to comment.