mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Use kibana for kibana server user, Don't log password
This commit is contained in:
parent
d095dac24d
commit
9f63224e77
2 changed files with 2 additions and 3 deletions
|
@ -6,7 +6,7 @@ exports.kibanaUser = {
|
|||
};
|
||||
|
||||
exports.kibanaServer = {
|
||||
username: env.TEST_KIBANA_SERVER_USER || 'elastic',
|
||||
username: env.TEST_KIBANA_SERVER_USER || 'kibana',
|
||||
password: env.TEST_KIBANA_SERVER_PASS || 'changeme'
|
||||
};
|
||||
|
||||
|
|
|
@ -120,8 +120,7 @@ export default class Common {
|
|||
self.debug('kibanaApp = ' + kibanaApp);
|
||||
if (kibanaApp === 'login') {
|
||||
self.debug('Found loginPage username = '
|
||||
+ config.servers.kibana.username
|
||||
+ 'password = ' + config.servers.kibana.password);
|
||||
+ config.servers.kibana.username);
|
||||
return PageObjects.shield.login(config.servers.kibana.username,
|
||||
config.servers.kibana.password)
|
||||
.then(function () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue