Skip to content

Commit aae12bb

Browse files
committed
Set missing feature flag in searchable snapshots QA Azure test (#54861)
1 parent 50186b2 commit aae12bb

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

x-pack/plugin/searchable-snapshots/qa/azure/build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19-
19+
import org.elasticsearch.gradle.info.BuildParams
2020
import static org.elasticsearch.gradle.PropertyNormalization.IGNORE_VALUE
2121

2222
apply plugin: 'elasticsearch.standalone-rest-test'
@@ -73,6 +73,10 @@ testClusters.integTest {
7373
testDistribution = 'DEFAULT'
7474
plugin file(repositoryPlugin.bundlePlugin.archiveFile)
7575

76+
if (BuildParams.isSnapshotBuild() == false) {
77+
systemProperty 'es.searchable_snapshots_feature_enabled', 'true'
78+
}
79+
7680
keystore 'azure.client.searchable_snapshots.account', azureAccount
7781
keystore 'azure.client.searchable_snapshots.key', azureKey
7882
keystore 'azure.client.searchable_snapshots.sas_token', azureSasToken

0 commit comments

Comments
 (0)