Github user zentol commented on a diff in the pull request:
https://github.com/apache/flink/pull/2108#discussion_r67318672
--- Diff:
flink-streaming-connectors/flink-connector-kafka-0.9/src/main/java/org/apache/flink/streaming/connectors/kafka/FlinkKafkaProducer09.java
---
@@ -127,4 +127,11 @@ public FlinkKafkaProducer09(String topicId,
KeyedSerializationSchema<IN> seriali
public FlinkKafkaProducer09(String topicId,
KeyedSerializationSchema<IN> serializationSchema, Properties producerConfig,
KafkaPartitioner<IN> customPartitioner) {
super(topicId, serializationSchema, producerConfig,
customPartitioner);
}
+
+ @Override
+ protected void flush() {
+ if(this.producer != null) {
--- End diff --
missing space after if
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---