1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Update packages/node_modules/@node-red/runtime/lib/flows/Flow.js

This commit is contained in:
Nick O'Leary 2022-11-30 22:23:04 +00:00 committed by GitHub
parent 79db4f8aa1
commit 742f05f59d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -823,7 +823,6 @@ function deliverMessageToDestination(sendEvent) {
try {
sendEvent.destination.node.receive(sendEvent.msg);
} catch(err) {
const info = `${sendEvent.destination.node?.id}`
Log.error(`Error delivering message to node:${sendEvent.destination.node._path} [${sendEvent.destination.node.type}]`)
Log.error(err.stack)
}