Skip to content

Commit

Permalink
Fixes an issue with variable declaration
Browse files Browse the repository at this point in the history
Signed-off-by: Darshit Chanpura <dchanp@amazon.com>
  • Loading branch information
DarshitChanpura committed Jan 24, 2024
1 parent e18849a commit 37d1296
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,7 @@ integTest {
systemProperty 'buildDir', buildDir.path
systemProperty "https", System.getProperty("https", securityEnabled.toString())
systemProperty "user", System.getProperty("user", "admin")
defaultAdminPassword = System.getProperty("OPENSEARCH_INITIAL_ADMIN_PASSWORD", "myStrongPassword123!") // this change is needed for >= 2.12 and should not be backported to < 2.12
systemProperty "password", System.getProperty("password", defaultAdminPassword)
systemProperty "password", System.getProperty("password", "myStrongPassword123!") // this change is needed for >= 2.12 and should not be backported to < 2.12
// Tell the test JVM if the cluster JVM is running under a debugger so that tests can use longer timeouts for
// requests. The 'doFirst' delays reading the debug setting on the cluster till execution time.
doFirst {
Expand Down

0 comments on commit 37d1296

Please sign in to comment.