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 c2604cb790 NIFI-15452 Changed FlowRegistryClient instances to always 
require validation (#10757)
c2604cb790 is described below

commit c2604cb790636bd6616b73d35b69acadd9d662bd
Author: Pierre Villard <[email protected]>
AuthorDate: Mon Jan 12 16:05:39 2026 +0100

    NIFI-15452 Changed FlowRegistryClient instances to always require 
validation (#10757)
    
    Signed-off-by: David Handermann <[email protected]>
---
 .../org/apache/nifi/registry/flow/StandardFlowRegistryClientNode.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/nifi-framework-bundle/nifi-framework/nifi-framework-components/src/main/java/org/apache/nifi/registry/flow/StandardFlowRegistryClientNode.java
 
b/nifi-framework-bundle/nifi-framework/nifi-framework-components/src/main/java/org/apache/nifi/registry/flow/StandardFlowRegistryClientNode.java
index 69ae02c569..d93c08d937 100644
--- 
a/nifi-framework-bundle/nifi-framework/nifi-framework-components/src/main/java/org/apache/nifi/registry/flow/StandardFlowRegistryClientNode.java
+++ 
b/nifi-framework-bundle/nifi-framework/nifi-framework-components/src/main/java/org/apache/nifi/registry/flow/StandardFlowRegistryClientNode.java
@@ -168,7 +168,7 @@ public final class StandardFlowRegistryClientNode extends 
AbstractComponentNode
 
     @Override
     public boolean isValidationNecessary() {
-        return getValidationStatus() != ValidationStatus.VALID;
+        return true;
     }
 
     @Override

Reply via email to