Merge pull request #2454 from node-red/send-metric-fix

Move receive metric position to better reflect async changes
This commit is contained in:
Nick O'Leary 2020-02-13 10:08:24 +00:00 committed by GitHub
commit f76edf74f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -193,6 +193,7 @@ Node.prototype.emit = function(event, ...args) {
*/ */
Node.prototype._emitInput = function(arg) { Node.prototype._emitInput = function(arg) {
var node = this; var node = this;
this.metric("receive", arg);
if (node._inputCallback) { if (node._inputCallback) {
// Just one callback registered. // Just one callback registered.
try { try {
@ -448,7 +449,6 @@ Node.prototype.receive = function(msg) {
if (!msg._msgid) { if (!msg._msgid) {
msg._msgid = redUtil.generateId(); msg._msgid = redUtil.generateId();
} }
this.metric("receive",msg);
this.emit("input",msg); this.emit("input",msg);
}; };