mirror of https://github.com/apache/nifi.git
NIFI-4436: Fixed bug that caused in Process Groups' names not to be fixed when reverting changes
Signed-off-by: Matt Gilman <matt.c.gilman@gmail.com>
This commit is contained in:
parent
fd18eeb84e
commit
63544c880f
|
@ -3470,7 +3470,7 @@ public final class StandardProcessGroup implements ProcessGroup {
|
||||||
added.findAllRemoteProcessGroups().stream().forEach(RemoteProcessGroup::initialize);
|
added.findAllRemoteProcessGroups().stream().forEach(RemoteProcessGroup::initialize);
|
||||||
LOG.info("Added {} to {}", added, this);
|
LOG.info("Added {} to {}", added, this);
|
||||||
} else if (childCoordinates == null || updateDescendantVersionedGroups) {
|
} else if (childCoordinates == null || updateDescendantVersionedGroups) {
|
||||||
updateProcessGroup(childGroup, proposedChildGroup, componentIdSeed, updatedVersionedComponentIds, true, updateName, updateDescendantVersionedGroups, variablesToSkip);
|
updateProcessGroup(childGroup, proposedChildGroup, componentIdSeed, updatedVersionedComponentIds, true, true, updateDescendantVersionedGroups, variablesToSkip);
|
||||||
LOG.info("Updated {}", childGroup);
|
LOG.info("Updated {}", childGroup);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue