Update bot
Took 2 hours 17 minutes
This commit is contained in:
24
node_modules/mysql2/lib/pool_config.js
generated
vendored
Normal file
24
node_modules/mysql2/lib/pool_config.js
generated
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
'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.queueLimit = isNaN(options.queueLimit)
|
||||
? 0
|
||||
: Number(options.queueLimit);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = PoolConfig;
|
Reference in New Issue
Block a user