Skip to content

Commit

Permalink
Try passing in the strong password
Browse files Browse the repository at this point in the history
Signed-off-by: Derek Ho <[email protected]>
  • Loading branch information
derek-ho committed Jan 11, 2024
1 parent 6186246 commit 4f7ace6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integ-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ ext {
cluster.getNodes().forEach { node ->
var creds = node.getCredentials()
if (creds.isEmpty()) {
creds.add(Map.of('useradd', 'admin', '-p', 'admin'))
creds.add(Map.of('useradd', 'admin', '-p', 'myStrongPassword123!'))
} else {
creds.get(0).putAll(Map.of('useradd', 'admin', '-p', 'admin'))
creds.get(0).putAll(Map.of('useradd', 'admin', '-p', 'myStrongPassword123!'))
}
}

Expand Down

0 comments on commit 4f7ace6

Please sign in to comment.