You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//<8.0.11 does not have MySQL X turned on by default so we will be installing the X Plugin in this if statement.
95
-
//MySQL 5.7.12 introduced the X plugin, but according to https://dev.mysql.com/doc/refman/5.7/en/document-store-setting-up.html, the database needs to be initialised with version 5.7.19.
96
-
//If the MySQL version is >=5.7.19 & <8.0.11 then install the X Plugin
//<8.0.11 does not have MySQL X turned on by default so we will be installing the X Plugin in this if statement.
100
+
//MySQL 5.7.12 introduced the X plugin, but according to https://dev.mysql.com/doc/refman/5.7/en/document-store-setting-up.html, the database needs to be initialised with version 5.7.19.
101
+
//If the MySQL version is >=5.7.19 & <8.0.11 then install the X Plugin
this.logger.log('Starting process was successful')
515
517
returnresolved
516
518
}catch(e){
@@ -521,7 +523,7 @@ class Executor {
521
523
}
522
524
retries++
523
525
if(retries<=options.portRetries){
524
-
this.logger.warn(`One or both of these ports are already in use: ${port} or ${mySQLXPort}. Now retrying... ${retries}/${options.portRetries} possible retries.`)
526
+
this.logger.warn(`Tried a port that is already in use. Now retrying... ${retries}/${options.portRetries} possible retries.`)
525
527
}else{
526
528
throw`The port has been retried ${options.portRetries} times and a free port could not be found.\nEither try again, or if this is a common issue, increase options.portRetries.`
0 commit comments