Skip to content

Commit

Permalink
Fix Kafka source to override areAcknowlegementsEnabled
Browse files Browse the repository at this point in the history
Signed-off-by: Krishna Kondaka <[email protected]>
  • Loading branch information
kkondaka committed Nov 3, 2024
1 parent e59917d commit e44bfbe
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,11 @@ public KafkaSource(final KafkaSourceConfig sourceConfig,
this.updateConfig(kafkaClusterConfigSupplier);
}

@Override
public boolean areAcknowledgementsEnabled() {
return sourceConfig.getAcknowledgementsEnabled();
}

@Override
public void start(Buffer<Record<Event>> buffer) {
try {
Expand Down

0 comments on commit e44bfbe

Please sign in to comment.