Github user markobean commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2703#discussion_r194513579
--- Diff:
nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/FlowController.java
---
@@ -4919,6 +4925,22 @@ private void updateRemoteProcessGroups() {
return new
ArrayList<>(provenanceRepository.getEvents(firstEventId, maxRecords));
}
+ public AuthorizationResult checkConnectableAuthorization(final String
componentId) {
--- End diff --
Correct. This was moved to ControllerFacade.java. I will remove it from
FlowController.java.
---