This is an automated email from the ASF dual-hosted git repository.
exceptionfactory pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/main by this push:
new baa35628b0 NIFI-14355 Changed Flow Registry sync frequency from 1
minute to 30 minutes (#9797)
baa35628b0 is described below
commit baa35628b0d2e4f839bc355caa0702a63d939bc7
Author: Pierre Villard <[email protected]>
AuthorDate: Thu Mar 13 16:57:52 2025 +0100
NIFI-14355 Changed Flow Registry sync frequency from 1 minute to 30 minutes
(#9797)
Signed-off-by: David Handermann <[email protected]>
---
.../src/main/java/org/apache/nifi/controller/FlowController.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/FlowController.java
b/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/FlowController.java
index 51d83d12f2..04e09e8dc2 100644
---
a/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/FlowController.java
+++
b/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/FlowController.java
@@ -1079,7 +1079,7 @@ public class FlowController implements
ReportingTaskProvider, FlowAnalysisRulePr
LOG.error("Failed to synchronize {} with Flow
Registry", group, e);
}
}
- }, 5, 60, TimeUnit.SECONDS);
+ }, 5, 30, TimeUnit.MINUTES);
initialized.set(true);
} finally {