mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
I need error msg
I still need the msg.payload when there is an error, not only when everything is going well.
This commit is contained in:
parent
9bae313b72
commit
b9701db578
@ -142,6 +142,8 @@ module.exports = function(RED) {
|
|||||||
conn.query(msg.topic, bind, function (err, rows) {
|
conn.query(msg.topic, bind, function (err, rows) {
|
||||||
conn.release()
|
conn.release()
|
||||||
if (err) {
|
if (err) {
|
||||||
|
msg.payload = rows;
|
||||||
|
send(msg);
|
||||||
status = { fill: "red", shape: "ring", text: RED._("mysql.status.error") + ": " + err.code };
|
status = { fill: "red", shape: "ring", text: RED._("mysql.status.error") + ": " + err.code };
|
||||||
node.status(status);
|
node.status(status);
|
||||||
node.error(err, msg);
|
node.error(err, msg);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user