Skip to content
This repository has been archived by the owner on Sep 13, 2024. It is now read-only.

Commit

Permalink
allow field name without topic qualifier
Browse files Browse the repository at this point in the history
  • Loading branch information
msillence committed Sep 10, 2024
1 parent 32cd663 commit f24c40d
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ private static FieldNameFilter createFilter(String fieldList, boolean include) {
if (parts.length == 2 && parts[0].equals(topicName) && parts[1].equals(fieldName)) {
return include;
}
if (parts.length == 1 && parts[0].equals(fieldName)) {
return include;
}
}
return !include;
};
Expand Down

0 comments on commit f24c40d

Please sign in to comment.