We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14547b1 commit 146b2e6Copy full SHA for 146b2e6
x-pack/plugin/data-streams/qa/rest/build.gradle
@@ -1,3 +1,5 @@
1
+import org.elasticsearch.gradle.info.BuildParams
2
+
3
apply plugin: 'elasticsearch.yaml-rest-test'
4
5
restResources {
@@ -12,6 +14,9 @@ restResources {
12
14
13
15
testClusters.all {
16
testDistribution = 'DEFAULT'
17
+ if (BuildParams.isSnapshotBuild() == false) {
18
+ systemProperty 'es.searchable_snapshots_feature_enabled', 'true'
19
+ }
20
// Data streams is basic, but a few tests test data streams in combination with paid features
21
setting 'xpack.license.self_generated.type', 'trial'
22
// disable ILM history, since it disturbs tests using _all
0 commit comments