Clear retained status of deleted nodes

This commit is contained in:
Nick O'Leary
2020-11-17 13:29:13 +00:00
parent 6ea978d83d
commit f19ec5d9b6
2 changed files with 81 additions and 0 deletions

View File

@@ -319,6 +319,11 @@ class Flow {
node.error(err);
}
}
if (removedMap[stopList[i]]) {
events.emit("node-status",{
id: node.id
});
}
}
}
return Promise.all(promises);