diff --git a/.idea/runConfigurations/Debug_Elasticsearch.xml b/.idea/runConfigurations/Debug_Elasticsearch.xml
index 051b746a1a497..9c062d3cfd790 100644
--- a/.idea/runConfigurations/Debug_Elasticsearch.xml
+++ b/.idea/runConfigurations/Debug_Elasticsearch.xml
@@ -1,5 +1,6 @@
+
@@ -12,4 +13,4 @@
-
+
\ No newline at end of file
diff --git a/modules/ingest-common/src/test/java/org/elasticsearch/ingest/common/RerouteProcessorFactoryTests.java b/modules/ingest-common/src/test/java/org/elasticsearch/ingest/common/RerouteProcessorFactoryTests.java
index 4906cf7057cec..8cd87d78c57c5 100644
--- a/modules/ingest-common/src/test/java/org/elasticsearch/ingest/common/RerouteProcessorFactoryTests.java
+++ b/modules/ingest-common/src/test/java/org/elasticsearch/ingest/common/RerouteProcessorFactoryTests.java
@@ -10,6 +10,7 @@
package org.elasticsearch.ingest.common;
import org.elasticsearch.ElasticsearchParseException;
+import org.elasticsearch.cluster.metadata.ProjectId;
import org.elasticsearch.ingest.common.RerouteProcessor.DataStreamValueSource;
import org.elasticsearch.test.ESTestCase;
@@ -74,6 +75,6 @@ private static RerouteProcessor create(String dataset, String namespace) throws
}
private static RerouteProcessor create(Map config) throws Exception {
- return new RerouteProcessor.Factory().create(null, null, null, new HashMap<>(config), null);
+ return new RerouteProcessor.Factory().create(null, null, null, new HashMap<>(config), ProjectId.DEFAULT);
}
}
diff --git a/modules/streams/build.gradle b/modules/streams/build.gradle
index fd56a627026b6..506a51f36a245 100644
--- a/modules/streams/build.gradle
+++ b/modules/streams/build.gradle
@@ -20,7 +20,7 @@ esplugin {
restResources {
restApi {
- include '_common', 'streams'
+ include '_common', 'streams', "bulk", "index", "ingest", "indices"
}
}
@@ -38,4 +38,5 @@ artifacts {
dependencies {
testImplementation project(path: ':test:test-clusters')
+ clusterModules project(':modules:ingest-common')
}
diff --git a/modules/streams/src/yamlRestTest/java/org/elasticsearch/streams/StreamsYamlTestSuiteIT.java b/modules/streams/src/yamlRestTest/java/org/elasticsearch/streams/StreamsYamlTestSuiteIT.java
index 9d5a1033faf57..d5b306a6cf9b4 100644
--- a/modules/streams/src/yamlRestTest/java/org/elasticsearch/streams/StreamsYamlTestSuiteIT.java
+++ b/modules/streams/src/yamlRestTest/java/org/elasticsearch/streams/StreamsYamlTestSuiteIT.java
@@ -29,7 +29,11 @@ public static Iterable