Skip to content

Commit

Permalink
fix the Predicate search #69
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienviale committed Nov 23, 2023
1 parent 1570a47 commit 41b013a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public void process(Record<K, V> message) {
currentInstant.plus(retentionWindowDuration))) {
while (resultIterator != null && resultIterator.hasNext()) {
var currentKeyValue = resultIterator.next();
if (message.value().equals(currentKeyValue.value)) {
if (identifier.equals(deduplicationKeyExtractor.apply(currentKeyValue.value))) {
return;
}
}
Expand Down

0 comments on commit 41b013a

Please sign in to comment.