Catch error loop detection nls

This commit is contained in:
Nick O'Leary
2015-06-15 15:13:35 +01:00
parent 5fbaca75b4
commit 99a51b07ac
2 changed files with 3 additions and 2 deletions

View File

@@ -758,7 +758,7 @@ Flow.prototype.handleError = function(node,logMessage,msg) {
if (msg.error.source.id === node.id) {
count = msg.error.source.count+1;
if (count === 10) {
node.warn("Message exceeded maximum number of catches");
node.warn(Log._("nodes.flow.error-loop"));
return;
}
}