moved around files
This commit is contained in:
30
panel-mgmt_backend/node_modules/mysql2/lib/pool_config.js
generated
vendored
Normal file
30
panel-mgmt_backend/node_modules/mysql2/lib/pool_config.js
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
'use strict';
|
||||
|
||||
const ConnectionConfig = require('./connection_config.js');
|
||||
|
||||
class PoolConfig {
|
||||
constructor(options) {
|
||||
if (typeof options === 'string') {
|
||||
options = ConnectionConfig.parseUrl(options);
|
||||
}
|
||||
this.connectionConfig = new ConnectionConfig(options);
|
||||
this.waitForConnections =
|
||||
options.waitForConnections === undefined
|
||||
? true
|
||||
: Boolean(options.waitForConnections);
|
||||
this.connectionLimit = isNaN(options.connectionLimit)
|
||||
? 10
|
||||
: Number(options.connectionLimit);
|
||||
this.maxIdle = isNaN(options.maxIdle)
|
||||
? this.connectionLimit
|
||||
: Number(options.maxIdle);
|
||||
this.idleTimeout = isNaN(options.idleTimeout)
|
||||
? 60000
|
||||
: Number(options.idleTimeout);
|
||||
this.queueLimit = isNaN(options.queueLimit)
|
||||
? 0
|
||||
: Number(options.queueLimit);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = PoolConfig;
|
Reference in New Issue
Block a user