Skip to content

Commit 5ebeab9

Browse files
remove mention of xEnabled 'ON'
1 parent bf67035 commit 5ebeab9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libraries/Executor.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -481,9 +481,9 @@ class Executor {
481481
async startMySQL(options: InternalServerOptions, installedMySQLBinary: DownloadedMySQLVersion): Promise<MySQLDB> {
482482
if (installedMySQLBinary.xPluginSupported === false && options.xEnabled === 'FORCE') {
483483
if (isOnAlpineLinux) {
484-
throw "options.xEnabled is set to 'FORCE'. You are running this package on Alpine Linux. The MySQL binaries for Alpine Linux do not support the MySQL X Plugin. If you don't want to use the MySQL X Plugin, please set options.xEnabled to 'OFF' and that will remove this error message. Otherwise, if you want MySQL X to be enabled only if it is supported (like if you run this package on a different OS), then please set options.xEnabled to 'ON'. If you must have MySQL X enabled for each database creation, please use a different OS to run this package."
484+
throw "options.xEnabled is set to 'FORCE'. You are running this package on Alpine Linux. The MySQL binaries for Alpine Linux do not support the MySQL X Plugin. If you don't want to use the MySQL X Plugin, please set options.xEnabled to 'OFF' and that will remove this error message. If you must have MySQL X enabled for each database creation, please use a different OS to run this package."
485485
}
486-
throw "options.xEnabled is set to 'FORCE'. The version of MySQL you are using does not support MySQL X. If you don't want to use the MySQL X Plugin, please set options.xEnabled to 'OFF'. If you only want MySQL X to be used when supported, set options.xEnabled to 'ON'. Otherwise, if MySQL X is required, please use a different version of MySQL that supports the X plugin."
486+
throw "options.xEnabled is set to 'FORCE'. The version of MySQL you are using does not support MySQL X. If you don't want to use the MySQL X Plugin, please set options.xEnabled to 'OFF'. Otherwise, if MySQL X is required, please use a different version of MySQL that supports the X plugin."
487487
}
488488

489489
this.version = installedMySQLBinary.version

0 commit comments

Comments
 (0)