Skip to content

Commit

Permalink
[Test] Bump password length to meet FIPS requirement (elastic#74662) (e…
Browse files Browse the repository at this point in the history
  • Loading branch information
ywangd authored Jun 29, 2021
1 parent 5745131 commit 28ab899
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion qa/system-indices/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ tasks.named("javaRestTest").configure {
testClusters.all {
testDistribution = 'DEFAULT'
setting 'xpack.security.enabled', 'true'
user username: 'rest_user', password: 'password', role: 'superuser'
user username: 'rest_user', password: 'rest-user-password', role: 'superuser'
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

public class NetNewSystemIndicesIT extends ESRestTestCase {

static final String BASIC_AUTH_VALUE = basicAuthHeaderValue("rest_user", new SecureString("password".toCharArray()));
static final String BASIC_AUTH_VALUE = basicAuthHeaderValue("rest_user", new SecureString("rest-user-password".toCharArray()));

@Override
protected Settings restClientSettings() {
Expand Down

0 comments on commit 28ab899

Please sign in to comment.