sv2000 commented on a change in pull request #2924: [GOBBLIN-1084] Refresh flowgraph when templates are modified URL: https://github.com/apache/incubator-gobblin/pull/2924#discussion_r392481458
########## File path: gobblin-service/src/main/java/org/apache/gobblin/service/modules/core/GitFlowGraphMonitor.java ########## @@ -127,6 +128,14 @@ public boolean shouldPollGit() { */ @Override void processGitConfigChanges() throws GitAPIException, IOException { + if (flowTemplateCatalog.isPresent() && (flowTemplateCatalog.get() instanceof ObservingFSFlowEdgeTemplateCatalog)) { + ObservingFSFlowEdgeTemplateCatalog catalog = (ObservingFSFlowEdgeTemplateCatalog) flowTemplateCatalog.get(); + if (catalog.isShouldRefreshFlowGraph()) { + this.gitRepo.initRepository(); Review comment: Add a log line here indicating that we have detected updates in the template catalog and that we need to re-bootstrap the FlowGraph. ---------------------------------------------------------------- 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: us...@infra.apache.org With regards, Apache Git Services