Skip to content

Commit

Permalink
Fix broken backport of #31578 by adjusting constructor (#31587)
Browse files Browse the repository at this point in the history
  • Loading branch information
original-brownbear committed Jun 26, 2018
1 parent 3ae0a89 commit 2424a1b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ public void testNestedForEach() throws Exception {

public void testIgnoreMissing() throws Exception {
IngestDocument originalIngestDocument = new IngestDocument(
"_index", "_type", "_id", null, null, null, Collections.emptyMap()
"_index", "_type", "_id", null, null, null, null, Collections.emptyMap()
);
IngestDocument ingestDocument = new IngestDocument(originalIngestDocument);
TestProcessor testProcessor = new TestProcessor(doc -> {});
Expand Down

0 comments on commit 2424a1b

Please sign in to comment.