This is an automated email from the ASF dual-hosted git repository.

joewitt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git

commit 75c3b19979403467b278469af98a4aa1048f0ccc
Author: exceptionfactory <exceptionfact...@apache.org>
AuthorDate: Sat Sep 30 08:15:29 2023 -0500

    NIFI-12142 This closes #7822. Corrected Cluster Pool Size Method Reference
    
    - Set getClusterNodeProtocolMaxPoolSize method reference in place of 
deprecated getClusterNodeProtocolThreads
    
    Signed-off-by: Joseph Witt <joew...@apache.org>
---
 .../src/main/resources/nifi-cluster-protocol-context.xml              | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-cluster-protocol/src/main/resources/nifi-cluster-protocol-context.xml
 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-cluster-protocol/src/main/resources/nifi-cluster-protocol-context.xml
index e69a06e8dc..ab45e52501 100644
--- 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-cluster-protocol/src/main/resources/nifi-cluster-protocol-context.xml
+++ 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-cluster-protocol/src/main/resources/nifi-cluster-protocol-context.xml
@@ -43,7 +43,7 @@
         <constructor-arg ref="protocolSocketConfiguration"/>
         <constructor-arg ref="protocolContext"/>
         <constructor-arg>
-            <bean factory-bean="nifiProperties" 
factory-method="getClusterNodeProtocolThreads"/>
+            <bean factory-bean="nifiProperties" 
factory-method="getClusterNodeProtocolMaxPoolSize"/>
         </constructor-arg>
         <property name="handshakeTimeout">
             <bean factory-bean="nifiProperties" 
factory-method="getClusterNodeConnectionTimeout"/>
@@ -73,7 +73,7 @@
     <!-- protocol listener -->
     <bean id="protocolListener" 
class="org.apache.nifi.cluster.protocol.impl.SocketProtocolListener">
         <constructor-arg index="0">
-            <bean factory-bean="nifiProperties" 
factory-method="getClusterNodeProtocolThreads"/>
+            <bean factory-bean="nifiProperties" 
factory-method="getClusterNodeProtocolMaxPoolSize"/>
         </constructor-arg>
         <constructor-arg index="1">
             <bean factory-bean="nifiProperties" 
factory-method="getClusterNodeProtocolPort"/>

Reply via email to