make nodes with only group change not deployed by nodes deploy mode

This commit is contained in:
Hiroyasu Nishiyama 2021-02-13 00:23:30 +09:00
parent f5da2eb633
commit 1be337fbc5
2 changed files with 6 additions and 2 deletions

View File

@ -148,7 +148,8 @@ function setFlows(_config,_credentials,type,muteLog,forceStart,user) {
// Parse the configuration
newFlowConfig = flowUtil.parseConfig(clone(config));
// Generate a diff to identify what has changed
diff = flowUtil.diffConfigs(activeFlowConfig,newFlowConfig);
diff = flowUtil.diffConfigs(activeFlowConfig,newFlowConfig,
(type === "nodes"));
// Now the flows have been compared, remove any credentials from newFlowConfig
// so they don't cause false-positive diffs the next time a flow is deployed

View File

@ -271,7 +271,7 @@ module.exports = {
parseConfig: parseConfig,
diffConfigs: function(oldConfig, newConfig) {
diffConfigs: function(oldConfig, newConfig, ignoreGroup) {
var id;
var node;
var nn;
@ -438,6 +438,9 @@ module.exports = {
if (newConfig.allNodes.hasOwnProperty(id)) {
node = newConfig.allNodes[id];
for (var prop in node) {
if (ignoreGroup && (prop === "g")) {
continue;
}
if (node.hasOwnProperty(prop) && prop != "z" && prop != "id" && prop != "wires") {
// This node has a property that references a changed/removed node
// Assume it is a config node change and mark this node as