mirror of
https://github.com/node-red/node-red-nodes.git
synced 2025-03-01 10:37:43 +00:00
add mysqlConnectionLimit settings option.
This commit is contained in:
parent
a01d7e3a97
commit
3836b9e76e
@ -4,9 +4,9 @@
|
||||
"description": "Node-RED nodes to send and receive simple emails.",
|
||||
"dependencies": {
|
||||
"imap": "^0.8.19",
|
||||
"poplib": "^0.1.7",
|
||||
"mailparser": "^3.4.0",
|
||||
"nodemailer": "^6.7.0",
|
||||
"nodemailer": "~6.7.1",
|
||||
"poplib": "^0.1.7",
|
||||
"smtp-server": "^3.9.0"
|
||||
},
|
||||
"bundledDependencies": [
|
||||
|
@ -41,7 +41,7 @@ module.exports = function(RED) {
|
||||
timezone : node.tz,
|
||||
insecureAuth: true,
|
||||
multipleStatements: true,
|
||||
connectionLimit: 50,
|
||||
connectionLimit: RED.settings.mysqlConnectionLimit || 50,
|
||||
connectTimeout: 30000,
|
||||
charset: node.charset,
|
||||
decimalNumbers: true
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "node-red-node-mysql",
|
||||
"version": "1.0.0-beta-3",
|
||||
"version": "1.0.0-beta-5",
|
||||
"description": "A Node-RED node to read and write to a MySQL database",
|
||||
"dependencies": {
|
||||
"mysql2": "^2.3.3"
|
||||
|
Loading…
x
Reference in New Issue
Block a user