Skip to content

Commit

Permalink
iter
Browse files Browse the repository at this point in the history
  • Loading branch information
javanna committed Apr 3, 2024
1 parent ee00b06 commit 670eec5
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,9 @@ public FetchSubPhaseProcessor getProcessor(FetchContext fetchContext) {
} else {
fields = new ArrayList<>(METADATA_FIELDS);
for (String fieldName : storedFieldsContext.fieldNames()) {
if (fieldName.equals(SourceFieldMapper.NAME) == false)
fields.add(new FieldAndFormat(fieldName, null));
if (fieldName.equals(SourceFieldMapper.NAME) == false) {
fields.add(new FieldAndFormat(fieldName, null));
}
}
}
fieldFetcherMetadataFields = FieldFetcher.create(fetchContext.getSearchExecutionContext(), fields);
Expand Down

0 comments on commit 670eec5

Please sign in to comment.