mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-02 08:59:09 +00:00
Backport of #48849. Update `.editorconfig` to make the Java settings the default for all files, and then apply a 2-space indent to all `*.gradle` files. Then reformat all the files.
14 lines
398 B
Groovy
14 lines
398 B
Groovy
description = 'Run a subset of SQL tests against multiple nodes'
|
|
|
|
/*
|
|
* We try to pick a small subset of the SQL tests so it'll
|
|
* run quickly but still exercise the bits of SQL that we
|
|
* feel should need to be tested against more than one node.
|
|
*/
|
|
|
|
testClusters.integTest {
|
|
numberOfNodes = 2
|
|
setting 'xpack.security.enabled', 'false'
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
|
}
|