bbende commented on code in PR #8765:
URL: https://github.com/apache/nifi/pull/8765#discussion_r1594079247
##########
nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/StandardNiFiServiceFacade.java:
##########
@@ -5357,6 +5355,8 @@ public RegisteredFlow registerVersionedFlow(final String
registryId, final Regis
}
try {
+ final String generatedId = registry.generateFlowId(flow.getName());
Review Comment:
Previously the framework generated a UUID in service facade before calling
the registerFlow method in registry client, but for GitHub we don't want a
UUID, so this just allows the framework to ask the client to generate the id,
and the default behavior can return a UUID like before, and the GitHub impl can
do something different.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]