Initial import from local backup (Documents-Playground/pakerpale)
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 =
|
||||
options.connectionLimit === undefined
|
||||
? 10
|
||||
: Number(options.connectionLimit);
|
||||
this.queueLimit =
|
||||
options.queueLimit === undefined ? 0 : Number(options.queueLimit);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = PoolConfig;
|
||||
Reference in New Issue
Block a user