Github user markap14 commented on a diff in the pull request:
https://github.com/apache/nifi/pull/1812#discussion_r116860008
--- Diff:
nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/StandardFlowSynchronizer.java
---
@@ -990,23 +1015,6 @@ private void updateProcessor(final ProcessorNode
procNode, final ProcessorDTO pr
}
procNode.setAnnotationData(config.getAnnotationData());
-
- if (config.getAutoTerminatedRelationships() != null) {
- final Set<Relationship> relationships = new HashSet<>();
- for (final String rel :
config.getAutoTerminatedRelationships()) {
- relationships.add(procNode.getRelationship(rel));
- }
- procNode.setAutoTerminatedRelationships(relationships);
- }
-
- procNode.setProperties(config.getProperties());
-
- final ScheduledState scheduledState =
ScheduledState.valueOf(processorDTO.getState());
--- End diff --
Nevermind - I understand now.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---