markap14 commented on a change in pull request #3351: NIFI-2933 Remote
input/output ports at any PG
URL: https://github.com/apache/nifi/pull/3351#discussion_r263593273
##########
File path:
nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/serialization/StandardFlowSerializer.java
##########
@@ -412,6 +412,8 @@ private void addPort(final Element parentElement, final
Port port, final String
addPosition(element, port.getPosition());
addTextElement(element, "comments", port.getComments());
addTextElement(element, "scheduledState",
scheduledStateLookup.getScheduledState(port).name());
+ addTextElement(element, "allowRemoteAccess",
String.valueOf(port.isAllowRemoteAccess()));
Review comment:
I'm seeing a lot of warnings about the XSD not matching the XML. Need to be
sure to update `nifi-framework-core/src/main/resources/FlowConfiguration.xsd`
to account for the new fields.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services