mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-23 21:38:15 +00:00
When running `gradle run` at the top level (at least with Gradle 4.4) it attempts to run multiple instances of the server, causing the run to fail since they can't both bind to 9200/9300. This renames the tasks for the `qa` directories to be `runqa` and the task for the `cli` directory to be `runcli`. Original commit: elastic/x-pack-elasticsearch@734ab8e132
8 lines
120 B
Groovy
8 lines
120 B
Groovy
integTestCluster {
|
|
setting 'xpack.security.enabled', 'false'
|
|
}
|
|
|
|
runqa {
|
|
setting 'xpack.security.enabled', 'false'
|
|
}
|