From 03b0ab70c470e82b90fbd7e82659286dcf0e366b Mon Sep 17 00:00:00 2001 From: Armin Date: Tue, 26 Jun 2018 21:48:39 +0200 Subject: [PATCH] Fix broken backport of #31578 by adjusting constructor --- .../org/elasticsearch/ingest/common/ForEachProcessorTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ingest-common/src/test/java/org/elasticsearch/ingest/common/ForEachProcessorTests.java b/modules/ingest-common/src/test/java/org/elasticsearch/ingest/common/ForEachProcessorTests.java index 78b2ca711e11d..817e254ca9c30 100644 --- a/modules/ingest-common/src/test/java/org/elasticsearch/ingest/common/ForEachProcessorTests.java +++ b/modules/ingest-common/src/test/java/org/elasticsearch/ingest/common/ForEachProcessorTests.java @@ -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 -> {});