We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e8d2ad commit 5559a9cCopy full SHA for 5559a9c
plugins/kafkaplugin/src/main/java/org/tron/eventplugin/MessageSenderImpl.java
@@ -108,7 +108,7 @@ private KafkaProducer createProducer(int eventType){
108
props.put("sasl.mechanism", "SCRAM-SHA-512");
109
props.put("sasl.jaas.config",
110
"org.apache.kafka.common.security.scram.ScramLoginModule required username=\"" +
111
- user + "\" password=\"" + passwd + "\"");
+ user + "\" password=\"" + passwd + "\";");
112
}
113
114
producer = new KafkaProducer<String, String>(props);
0 commit comments