Skip to content

Commit

Permalink
Missed paren
Browse files Browse the repository at this point in the history
Signed-off-by: Chase Engelbrecht <[email protected]>
  • Loading branch information
engechas committed Mar 16, 2024
1 parent de59881 commit 20a2d01
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ public void doOutput(final Collection<Record<Event>> records) {
event.put("index", docIndexName);
replacementFields.forEach(field -> event.put(field, List.of(docId)));
} else {
replacementFields.forEach(field -> event.put(field, Collections.emptyList());
replacementFields.forEach(field -> event.put(field, Collections.emptyList()));
}

event.delete("RULE_ENGINE_DOC_MATCH_ID");
Expand Down

0 comments on commit 20a2d01

Please sign in to comment.