File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
main/java/org/elasticsearch/xpack/fleet
test/java/org/elasticsearch/xpack/fleet Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -271,7 +271,10 @@ private static SystemIndexDescriptor fleetArtifactsSystemIndexDescriptors() {
271271
272272 private static SystemIndexDescriptor fleetIntegrationKnowledgeSystemIndexDescriptor () {
273273 PutIndexTemplateRequest request = new PutIndexTemplateRequest ();
274- request .source (loadTemplateSource ("/fleet-integration-knowledge.json" , FLEET_INTEGRATION_KNOWLEDGE_MAPPINGS_VERSION ), XContentType .JSON );
274+ request .source (
275+ loadTemplateSource ("/fleet-integration-knowledge.json" , FLEET_INTEGRATION_KNOWLEDGE_MAPPINGS_VERSION ),
276+ XContentType .JSON
277+ );
275278
276279 return SystemIndexDescriptor .builder ()
277280 .setType (Type .INTERNAL_MANAGED )
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ public void testFleetIndexNames() {
6161 assertFalse (fleetDescriptors .stream ().anyMatch (d -> d .matchesIndexPattern (".fleet-actions-results" )));
6262
6363 assertTrue (fleetDescriptors .stream ().anyMatch (d -> d .matchesIndexPattern (".fleet-secrets" )));
64-
64+
6565 assertTrue (fleetDescriptors .stream ().anyMatch (d -> d .matchesIndexPattern (".integration_knowledge" )));
6666 }
6767
You can’t perform that action at this time.
0 commit comments