apigeon
November 20, 2024, 10:29pm
1
Versions (relevant - OpenSearch/Dashboard/Server OS/Browser): 2.18.0
Describe the issue :
In the project opensearch-java/java-client, regardless of the version, the opensearchVersion is set to 2.12.0. Shouldn’t this be set to the same version as the opensearch-java version we checked out?
This is the line I’m referring to:
systemProperty("user", System.getProperty("user", "admin"))
systemProperty("password", System.getProperty("password", "admin"))
systemProperty("tests.awsSdk2support.domainHost",
System.getProperty("tests.awsSdk2support.domainHost", null))
systemProperty("tests.awsSdk2support.serviceName",
System.getProperty("tests.awsSdk2support.serviceName", "es"))
systemProperty("tests.awsSdk2support.domainRegion",
System.getProperty("tests.awsSdk2support.domainRegion", "us-east-1"))
}
val opensearchVersion = "2.12.0"
dependencies {
val jacksonVersion = "2.17.0"
val jacksonDatabindVersion = "2.17.0"
// Apache 2.0
api("commons-logging:commons-logging:1.3.4")
implementation("org.opensearch.client", "opensearch-rest-client", opensearchVersion)
testImplementation("org.hamcrest:hamcrest:2.2")
testImplementation("com.carrotsearch.randomizedtesting:randomizedtesting-runner:2.8.1") {
Configuration :
Relevant Logs or Screenshots :