Browse Source

Fix aggregations module yaml tests when running in release mode (#90976)

The time_series agg is behind a feature flag.
Martijn van Groningen 3 years ago
parent
commit
5a4a42ef49
1 changed files with 3 additions and 0 deletions
  1. 3 0
      modules/aggregations/build.gradle

+ 3 - 0
modules/aggregations/build.gradle

@@ -1,3 +1,5 @@
+import org.elasticsearch.gradle.Version
+
 /*
  * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
  * or more contributor license agreements. Licensed under the Elastic License
@@ -42,6 +44,7 @@ artifacts {
 
 testClusters.configureEach {
   module ':modules:lang-painless'
+  requiresFeature 'es.index_mode_feature_flag_registered', Version.fromString("8.0.0")
 }
 
 dependencies {