File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,9 @@ const checkPlugins = async (config: Cypress.PluginConfigOptions) => {
62
62
if ( config . env . SECURITY_ENABLED ) {
63
63
headers . Authorization =
64
64
'Basic ' + Buffer . from ( config . env . username + ':' + config . env . password ) . toString ( 'base64' ) ;
65
+ console . log ( 'Checking capabilities enabled on OpenSearch Dashboards with security...' ) ;
66
+ } else {
67
+ console . log ( 'Checking capabilities enabled on OpenSearch Dashboards...' ) ;
65
68
}
66
69
67
70
do {
@@ -93,7 +96,7 @@ const checkPlugins = async (config: Cypress.PluginConfigOptions) => {
93
96
return ;
94
97
}
95
98
96
- console . log ( ' Waiting for OpenSearch Dashboards to be ready ...' ) ;
99
+ console . log ( `[ ${ resp . status } ] Waiting for OpenSearch Dashboards to respond ...` ) ;
97
100
await setTimeout ( CONNECTION_RETRY_INTERVAL ) ;
98
101
} while ( Date . now ( ) - startTime < CONNECTION_TIMEOUT_TOTAL ) ;
99
102
You can’t perform that action at this time.
0 commit comments