node-red-node-mysql
Advanced tools
Comparing version 0.0.6 to 0.0.7
@@ -49,3 +49,3 @@ /** | ||
if (err) { | ||
node.warn(err); | ||
node.error(err); | ||
node.tick = setTimeout(doConnect, reconnect); | ||
@@ -107,3 +107,3 @@ } else { | ||
node.mydbConfig.connection.query(msg.topic, bind, function(err, rows) { | ||
if (err) { node.warn(err); } | ||
if (err) { node.error(err,msg); } | ||
else { | ||
@@ -110,0 +110,0 @@ msg.payload = rows; |
{ | ||
"name" : "node-red-node-mysql", | ||
"version" : "0.0.6", | ||
"version" : "0.0.7", | ||
"description" : "A Node-RED node to read and write to a MySQL database", | ||
"dependencies" : { | ||
"mysql" : "2.7.*" | ||
"mysql" : "2.9.*" | ||
}, | ||
@@ -8,0 +8,0 @@ "repository" : { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
19892
+ Addedmysql@2.9.0(transitive)
- Removedmysql@2.7.0(transitive)
- Removedrequire-all@1.0.0(transitive)
Updatedmysql@2.9.*