Skip to content

Commit

Permalink
DBZ-7098 Enable tombstones for sinks capable of handling them
Browse files Browse the repository at this point in the history
  • Loading branch information
jpechane committed Jan 5, 2024
1 parent 934086c commit 6954707
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -171,11 +171,6 @@ public void handleBatch(List<ChangeEvent<Object, Object>> records, RecordCommitt
committer.markBatchFinished();
}

@Override
public boolean supportsTombstoneEvents() {
return false;
}

private Map<String, Object> convertRabbitMqHeaders(ChangeEvent<Object, Object> record) {
List<Header<Object>> headers = record.headers();
Map<String, Object> rabbitMqHeaders = new HashMap<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,6 @@ public void handleBatch(List<ChangeEvent<Object, Object>> records, RecordCommitt
committer.markBatchFinished();
}

@Override
public boolean supportsTombstoneEvents() {
return false;
}

private Map<String, Object> convertRabbitMqHeaders(ChangeEvent<Object, Object> record) {
List<Header<Object>> headers = record.headers();
Map<String, Object> rabbitMqHeaders = new HashMap<>();
Expand Down

0 comments on commit 6954707

Please sign in to comment.