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.",
|
"description": "Node-RED nodes to send and receive simple emails.",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"imap": "^0.8.19",
|
"imap": "^0.8.19",
|
||||||
"poplib": "^0.1.7",
|
|
||||||
"mailparser": "^3.4.0",
|
"mailparser": "^3.4.0",
|
||||||
"nodemailer": "^6.7.0",
|
"nodemailer": "~6.7.1",
|
||||||
|
"poplib": "^0.1.7",
|
||||||
"smtp-server": "^3.9.0"
|
"smtp-server": "^3.9.0"
|
||||||
},
|
},
|
||||||
"bundledDependencies": [
|
"bundledDependencies": [
|
||||||
|
@ -41,7 +41,7 @@ module.exports = function(RED) {
|
|||||||
timezone : node.tz,
|
timezone : node.tz,
|
||||||
insecureAuth: true,
|
insecureAuth: true,
|
||||||
multipleStatements: true,
|
multipleStatements: true,
|
||||||
connectionLimit: 50,
|
connectionLimit: RED.settings.mysqlConnectionLimit || 50,
|
||||||
connectTimeout: 30000,
|
connectTimeout: 30000,
|
||||||
charset: node.charset,
|
charset: node.charset,
|
||||||
decimalNumbers: true
|
decimalNumbers: true
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "node-red-node-mysql",
|
"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",
|
"description": "A Node-RED node to read and write to a MySQL database",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"mysql2": "^2.3.3"
|
"mysql2": "^2.3.3"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user