mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-05 20:48:22 +00:00
df802b40c8
Drop the ssl tests against the java builtin https server. They were failing and the failures were undebuggable. I still don't know what was happening because you can't get any logging out of the server. Add SSL tests against Elasticsearch because that is what actually needs to work. relates elastic/x-pack-elasticsearch#2870 Original commit: elastic/x-pack-elasticsearch@284cf7fb58
13 lines
430 B
Groovy
13 lines
430 B
Groovy
integTestCluster {
|
|
waitCondition = { node, ant ->
|
|
File tmpFile = new File(node.cwd, 'wait.success')
|
|
ant.get(src: "http://${node.httpUri()}/_cluster/health?wait_for_nodes=>=${numNodes}&wait_for_status=yellow",
|
|
dest: tmpFile.toString(),
|
|
username: 'test_admin',
|
|
password: 'x-pack-test-password',
|
|
ignoreerrors: true,
|
|
retries: 10)
|
|
return tmpFile.exists()
|
|
}
|
|
}
|