(nifi) branch support/nifi-1.x updated: NIFI-12370 Fixed Distributed Map Cache Client Service Shutdown

2023-11-14 Thread pvillard
This is an automated email from the ASF dual-hosted git repository.

pvillard pushed a commit to branch support/nifi-1.x
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/support/nifi-1.x by this push:
 new 28421e3df0 NIFI-12370 Fixed Distributed Map Cache Client Service 
Shutdown
28421e3df0 is described below

commit 28421e3df02ef3256328ad11886bf945bdbb2366
Author: exceptionfactory 
AuthorDate: Tue Nov 14 20:30:57 2023 -0600

NIFI-12370 Fixed Distributed Map Cache Client Service Shutdown

- Moved EventLoopGroup from CacheClientChannelPoolFactory to 
DistributedCacheClient to enable closing the EventLoopGroup after closing the 
ChannelPool

Signed-off-by: Pierre Villard 

This closes #8027.
---
 .../cache/client/CacheClientChannelPoolFactory.java   | 12 
 .../distributed/cache/client/DistributedCacheClient.java  | 15 ---
 2 files changed, 16 insertions(+), 11 deletions(-)

diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-distributed-cache-services-bundle/nifi-distributed-cache-client-service/src/main/java/org/apache/nifi/distributed/cache/client/CacheClientChannelPoolFactory.java
 
b/nifi-nar-bundles/nifi-standard-services/nifi-distributed-cache-services-bundle/nifi-distributed-cache-client-service/src/main/java/org/apache/nifi/distributed/cache/client/CacheClientChannelPoolFactory.java
index 82a529ecd9..905de8dc52 100644
--- 
a/nifi-nar-bundles/nifi-standard-services/nifi-distributed-cache-services-bundle/nifi-distributed-cache-client-service/src/main/java/org/apache/nifi/distributed/cache/client/CacheClientChannelPoolFactory.java
+++ 
b/nifi-nar-bundles/nifi-standard-services/nifi-distributed-cache-services-bundle/nifi-distributed-cache-client-service/src/main/java/org/apache/nifi/distributed/cache/client/CacheClientChannelPoolFactory.java
@@ -20,13 +20,11 @@ import io.netty.bootstrap.Bootstrap;
 import io.netty.channel.Channel;
 import io.netty.channel.ChannelOption;
 import io.netty.channel.EventLoopGroup;
-import io.netty.channel.nio.NioEventLoopGroup;
 import io.netty.channel.pool.ChannelHealthChecker;
 import io.netty.channel.pool.ChannelPool;
 import io.netty.channel.pool.ChannelPoolHandler;
 import io.netty.channel.pool.FixedChannelPool;
 import io.netty.channel.socket.nio.NioSocketChannel;
-import io.netty.util.concurrent.DefaultThreadFactory;
 import 
org.apache.nifi.event.transport.netty.channel.pool.InitializingChannelPoolHandler;
 import org.apache.nifi.remote.VersionNegotiatorFactory;
 import org.apache.nifi.ssl.SSLContextService;
@@ -39,10 +37,9 @@ import java.time.Duration;
  * methods.  Cache clients include the NiFi services {@link 
DistributedSetCacheClientService}
  * and {@link DistributedMapCacheClientService}.
  */
-public class CacheClientChannelPoolFactory {
+class CacheClientChannelPoolFactory {
 
 private static final int MAX_PENDING_ACQUIRES = 1024;
-private static final boolean DAEMON_THREAD_ENABLED = true;
 
 private int maxConnections = Runtime.getRuntime().availableProcessors() * 
2;
 
@@ -64,7 +61,7 @@ public class CacheClientChannelPoolFactory {
  * @param sslContextService the SSL context (if any) associated with 
requests to the service; if not specified,
  *  communications will not be encrypted
  * @param factory   creator of object used to broker the version 
of the distributed cache protocol with the service
- * @param poolName  channel pool name, used for threads name prefix
+ * @param eventLoopGroupNetty Event Loop Group providing threads for 
managing connections
  * @return a channel pool object from which {@link Channel} objects may be 
obtained
  */
 public ChannelPool createChannelPool(final String hostname,
@@ -72,12 +69,11 @@ public class CacheClientChannelPoolFactory {
  final int timeoutMillis,
  final SSLContextService 
sslContextService,
  final VersionNegotiatorFactory 
factory,
- final String poolName) {
+ final EventLoopGroup eventLoopGroup) {
 final SSLContext sslContext = (sslContextService == null) ? null : 
sslContextService.createContext();
-final EventLoopGroup group = new NioEventLoopGroup(new 
DefaultThreadFactory(poolName, DAEMON_THREAD_ENABLED));
 final Bootstrap bootstrap = new Bootstrap();
 final CacheClientChannelInitializer initializer = new 
CacheClientChannelInitializer(sslContext, factory, 
Duration.ofMillis(timeoutMillis), Duration.ofMillis(timeoutMillis));
-bootstrap.group(group)
+bootstrap.group(eventLoopGroup)
 .option(ChannelOption.CONNECT_TIMEOUT_MILLIS, timeoutMillis)
 .remoteAddress(hostname, port)
 

(nifi) branch main updated: NIFI-12370 Fixed Distributed Map Cache Client Service Shutdown

2023-11-14 Thread pvillard
This is an automated email from the ASF dual-hosted git repository.

pvillard 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 5815d83207 NIFI-12370 Fixed Distributed Map Cache Client Service 
Shutdown
5815d83207 is described below

commit 5815d8320717e9d9a48bd4232885fe294663b644
Author: exceptionfactory 
AuthorDate: Tue Nov 14 20:30:57 2023 -0600

NIFI-12370 Fixed Distributed Map Cache Client Service Shutdown

- Moved EventLoopGroup from CacheClientChannelPoolFactory to 
DistributedCacheClient to enable closing the EventLoopGroup after closing the 
ChannelPool

Signed-off-by: Pierre Villard 

This closes #8027.
---
 .../cache/client/CacheClientChannelPoolFactory.java   | 12 
 .../distributed/cache/client/DistributedCacheClient.java  | 15 ---
 2 files changed, 16 insertions(+), 11 deletions(-)

diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-distributed-cache-services-bundle/nifi-distributed-cache-client-service/src/main/java/org/apache/nifi/distributed/cache/client/CacheClientChannelPoolFactory.java
 
b/nifi-nar-bundles/nifi-standard-services/nifi-distributed-cache-services-bundle/nifi-distributed-cache-client-service/src/main/java/org/apache/nifi/distributed/cache/client/CacheClientChannelPoolFactory.java
index 82a529ecd9..905de8dc52 100644
--- 
a/nifi-nar-bundles/nifi-standard-services/nifi-distributed-cache-services-bundle/nifi-distributed-cache-client-service/src/main/java/org/apache/nifi/distributed/cache/client/CacheClientChannelPoolFactory.java
+++ 
b/nifi-nar-bundles/nifi-standard-services/nifi-distributed-cache-services-bundle/nifi-distributed-cache-client-service/src/main/java/org/apache/nifi/distributed/cache/client/CacheClientChannelPoolFactory.java
@@ -20,13 +20,11 @@ import io.netty.bootstrap.Bootstrap;
 import io.netty.channel.Channel;
 import io.netty.channel.ChannelOption;
 import io.netty.channel.EventLoopGroup;
-import io.netty.channel.nio.NioEventLoopGroup;
 import io.netty.channel.pool.ChannelHealthChecker;
 import io.netty.channel.pool.ChannelPool;
 import io.netty.channel.pool.ChannelPoolHandler;
 import io.netty.channel.pool.FixedChannelPool;
 import io.netty.channel.socket.nio.NioSocketChannel;
-import io.netty.util.concurrent.DefaultThreadFactory;
 import 
org.apache.nifi.event.transport.netty.channel.pool.InitializingChannelPoolHandler;
 import org.apache.nifi.remote.VersionNegotiatorFactory;
 import org.apache.nifi.ssl.SSLContextService;
@@ -39,10 +37,9 @@ import java.time.Duration;
  * methods.  Cache clients include the NiFi services {@link 
DistributedSetCacheClientService}
  * and {@link DistributedMapCacheClientService}.
  */
-public class CacheClientChannelPoolFactory {
+class CacheClientChannelPoolFactory {
 
 private static final int MAX_PENDING_ACQUIRES = 1024;
-private static final boolean DAEMON_THREAD_ENABLED = true;
 
 private int maxConnections = Runtime.getRuntime().availableProcessors() * 
2;
 
@@ -64,7 +61,7 @@ public class CacheClientChannelPoolFactory {
  * @param sslContextService the SSL context (if any) associated with 
requests to the service; if not specified,
  *  communications will not be encrypted
  * @param factory   creator of object used to broker the version 
of the distributed cache protocol with the service
- * @param poolName  channel pool name, used for threads name prefix
+ * @param eventLoopGroupNetty Event Loop Group providing threads for 
managing connections
  * @return a channel pool object from which {@link Channel} objects may be 
obtained
  */
 public ChannelPool createChannelPool(final String hostname,
@@ -72,12 +69,11 @@ public class CacheClientChannelPoolFactory {
  final int timeoutMillis,
  final SSLContextService 
sslContextService,
  final VersionNegotiatorFactory 
factory,
- final String poolName) {
+ final EventLoopGroup eventLoopGroup) {
 final SSLContext sslContext = (sslContextService == null) ? null : 
sslContextService.createContext();
-final EventLoopGroup group = new NioEventLoopGroup(new 
DefaultThreadFactory(poolName, DAEMON_THREAD_ENABLED));
 final Bootstrap bootstrap = new Bootstrap();
 final CacheClientChannelInitializer initializer = new 
CacheClientChannelInitializer(sslContext, factory, 
Duration.ofMillis(timeoutMillis), Duration.ofMillis(timeoutMillis));
-bootstrap.group(group)
+bootstrap.group(eventLoopGroup)
 .option(ChannelOption.CONNECT_TIMEOUT_MILLIS, timeoutMillis)
 .remoteAddress(hostname, port)
 .channel(NioSocketChannel.class);
diff --git 

(nifi) branch support/nifi-1.x updated: NIFI-12367 Reverted Netty from 4.1.101 to 4.1.100

2023-11-14 Thread exceptionfactory
This is an automated email from the ASF dual-hosted git repository.

exceptionfactory pushed a commit to branch support/nifi-1.x
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/support/nifi-1.x by this push:
 new 70b9eae4af NIFI-12367 Reverted Netty from 4.1.101 to 4.1.100
70b9eae4af is described below

commit 70b9eae4afbade8b2c3f03e5f56ff30af7d7fef8
Author: exceptionfactory 
AuthorDate: Tue Nov 14 20:12:10 2023 -0600

NIFI-12367 Reverted Netty from 4.1.101 to 4.1.100

- Version 4.1.101 causes exceptions with gRPC 1.58.0

Signed-off-by: David Handermann 
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 87b0d644b1..d2350f361b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -146,7 +146,7 @@
 1.3.11
 3.10.6.Final
 2.2
-4.1.101.Final
+4.1.100.Final
 5.3.30
 5.8.7
 1.6.12



(nifi) 02/02: NIFI-12363 Upgraded JLine from 3.23.0 to 3.24.1

2023-11-14 Thread exceptionfactory
This is an automated email from the ASF dual-hosted git repository.

exceptionfactory pushed a commit to branch support/nifi-1.x
in repository https://gitbox.apache.org/repos/asf/nifi.git

commit 0f32068d0b5b381df4ed6f2b8581dff263a768bf
Author: mr1716 
AuthorDate: Mon Nov 13 15:00:55 2023 -0500

NIFI-12363 Upgraded JLine from 3.23.0 to 3.24.1

This closes #8021

Signed-off-by: David Handermann 
(cherry picked from commit 3619780813f43dd936116bb1510cd7b9785be926)
---
 nifi-toolkit/nifi-toolkit-cli/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nifi-toolkit/nifi-toolkit-cli/pom.xml 
b/nifi-toolkit/nifi-toolkit-cli/pom.xml
index 1215500603..5c1a2a0c57 100644
--- a/nifi-toolkit/nifi-toolkit-cli/pom.xml
+++ b/nifi-toolkit/nifi-toolkit-cli/pom.xml
@@ -25,7 +25,7 @@
 
 
 32.1.2-jre
-3.23.0
+3.24.1
 
 
 



(nifi) branch support/nifi-1.x updated (e0c12be1bb -> 0f32068d0b)

2023-11-14 Thread exceptionfactory
This is an automated email from the ASF dual-hosted git repository.

exceptionfactory pushed a change to branch support/nifi-1.x
in repository https://gitbox.apache.org/repos/asf/nifi.git


from e0c12be1bb NIFI-12364 Upgrade snowflake-ingest-sdk to 2.0.4 and 
snowflake-jdbc to 3.14.3
 new c77f886978 NIFI-12367 Upgraded Netty from 4.1.100 to 4.1.101
 new 0f32068d0b NIFI-12363 Upgraded JLine from 3.23.0 to 3.24.1

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 nifi-toolkit/nifi-toolkit-cli/pom.xml | 2 +-
 pom.xml   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)



(nifi) 01/02: NIFI-12367 Upgraded Netty from 4.1.100 to 4.1.101

2023-11-14 Thread exceptionfactory
This is an automated email from the ASF dual-hosted git repository.

exceptionfactory pushed a commit to branch support/nifi-1.x
in repository https://gitbox.apache.org/repos/asf/nifi.git

commit c77f886978e56a979a8f1c87f0c74638b943c9c3
Author: mr1716 
AuthorDate: Tue Nov 14 08:12:52 2023 -0500

NIFI-12367 Upgraded Netty from 4.1.100 to 4.1.101

This closes #8024

Signed-off-by: David Handermann 
(cherry picked from commit 762262f7fdbd3ca704b289184b2fb60ef558bac0)
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index d2350f361b..87b0d644b1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -146,7 +146,7 @@
 1.3.11
 3.10.6.Final
 2.2
-4.1.100.Final
+4.1.101.Final
 5.3.30
 5.8.7
 1.6.12



(nifi) 01/02: NIFI-12367 Upgraded Netty from 4.1.100 to 4.1.101

2023-11-14 Thread exceptionfactory
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

commit 762262f7fdbd3ca704b289184b2fb60ef558bac0
Author: mr1716 
AuthorDate: Tue Nov 14 08:12:52 2023 -0500

NIFI-12367 Upgraded Netty from 4.1.100 to 4.1.101

This closes #8024

Signed-off-by: David Handermann 
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 5a1efcbc85..bf10ab5aaf 100644
--- a/pom.xml
+++ b/pom.xml
@@ -148,7 +148,7 @@
 5.7.0
 3.10.6.Final
 2.2
-4.1.100.Final
+4.1.101.Final
 5.3.30
 5.8.7
 1.6.12



(nifi) 02/02: NIFI-12363 Upgraded JLine from 3.23.0 to 3.24.1

2023-11-14 Thread exceptionfactory
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

commit 3619780813f43dd936116bb1510cd7b9785be926
Author: mr1716 
AuthorDate: Mon Nov 13 15:00:55 2023 -0500

NIFI-12363 Upgraded JLine from 3.23.0 to 3.24.1

This closes #8021

Signed-off-by: David Handermann 
---
 nifi-toolkit/nifi-toolkit-cli/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nifi-toolkit/nifi-toolkit-cli/pom.xml 
b/nifi-toolkit/nifi-toolkit-cli/pom.xml
index 7c89600edb..deefe3c80d 100644
--- a/nifi-toolkit/nifi-toolkit-cli/pom.xml
+++ b/nifi-toolkit/nifi-toolkit-cli/pom.xml
@@ -25,7 +25,7 @@
 
 
 32.1.2-jre
-3.23.0
+3.24.1
 
 
 



(nifi) branch main updated (e0527a81bb -> 3619780813)

2023-11-14 Thread exceptionfactory
This is an automated email from the ASF dual-hosted git repository.

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


from e0527a81bb NIFI-12364 Upgrade snowflake-ingest-sdk to 2.0.4 and 
snowflake-jdbc to 3.14.3
 new 762262f7fd NIFI-12367 Upgraded Netty from 4.1.100 to 4.1.101
 new 3619780813 NIFI-12363 Upgraded JLine from 3.23.0 to 3.24.1

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 nifi-toolkit/nifi-toolkit-cli/pom.xml | 2 +-
 pom.xml   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)



(nifi) branch support/nifi-1.x updated: NIFI-12364 Upgrade snowflake-ingest-sdk to 2.0.4 and snowflake-jdbc to 3.14.3

2023-11-14 Thread turcsanyi
This is an automated email from the ASF dual-hosted git repository.

turcsanyi pushed a commit to branch support/nifi-1.x
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/support/nifi-1.x by this push:
 new e0c12be1bb NIFI-12364 Upgrade snowflake-ingest-sdk to 2.0.4 and 
snowflake-jdbc to 3.14.3
e0c12be1bb is described below

commit e0c12be1bb83ef66182392d1bd976a41756503f7
Author: mr1716 
AuthorDate: Mon Nov 13 15:08:20 2023 -0500

NIFI-12364 Upgrade snowflake-ingest-sdk to 2.0.4 and snowflake-jdbc to 
3.14.3

This closes #8022.

Signed-off-by: Peter Turcsanyi 
(cherry picked from commit e0527a81bbaad69b0fef9b95b34aa8579c9250b2)
---
 nifi-nar-bundles/nifi-snowflake-bundle/pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/nifi-nar-bundles/nifi-snowflake-bundle/pom.xml 
b/nifi-nar-bundles/nifi-snowflake-bundle/pom.xml
index e1e48812d2..b7e7442199 100644
--- a/nifi-nar-bundles/nifi-snowflake-bundle/pom.xml
+++ b/nifi-nar-bundles/nifi-snowflake-bundle/pom.xml
@@ -36,13 +36,13 @@
 
 net.snowflake
 snowflake-ingest-sdk
-2.0.3
+2.0.4
 
 
 net.snowflake
 snowflake-jdbc
 
-3.13.33
+3.14.3
 
 
 



(nifi) branch main updated: NIFI-12364 Upgrade snowflake-ingest-sdk to 2.0.4 and snowflake-jdbc to 3.14.3

2023-11-14 Thread turcsanyi
This is an automated email from the ASF dual-hosted git repository.

turcsanyi 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 e0527a81bb NIFI-12364 Upgrade snowflake-ingest-sdk to 2.0.4 and 
snowflake-jdbc to 3.14.3
e0527a81bb is described below

commit e0527a81bbaad69b0fef9b95b34aa8579c9250b2
Author: mr1716 
AuthorDate: Mon Nov 13 15:08:20 2023 -0500

NIFI-12364 Upgrade snowflake-ingest-sdk to 2.0.4 and snowflake-jdbc to 
3.14.3

This closes #8022.

Signed-off-by: Peter Turcsanyi 
---
 nifi-nar-bundles/nifi-snowflake-bundle/pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/nifi-nar-bundles/nifi-snowflake-bundle/pom.xml 
b/nifi-nar-bundles/nifi-snowflake-bundle/pom.xml
index 1e2bfd8e43..059db5453b 100644
--- a/nifi-nar-bundles/nifi-snowflake-bundle/pom.xml
+++ b/nifi-nar-bundles/nifi-snowflake-bundle/pom.xml
@@ -36,13 +36,13 @@
 
 net.snowflake
 snowflake-ingest-sdk
-2.0.3
+2.0.4
 
 
 net.snowflake
 snowflake-jdbc
 
-3.13.33
+3.14.3
 
 
 



(nifi) annotated tag nifi-1.24.0-RC1 created (now b748c0b293)

2023-11-14 Thread pvillard
This is an automated email from the ASF dual-hosted git repository.

pvillard pushed a change to annotated tag nifi-1.24.0-RC1
in repository https://gitbox.apache.org/repos/asf/nifi.git


  at b748c0b293 (tag)
 tagging 9620b723f663684611a0cfb3468eff19dde7e5d6 (commit)
 replaces nifi-1.23.0-RC3
  by Pierre Villard
  on Tue Nov 14 14:30:31 2023 +0100

- Log -
NIFI-12362-RC1 copy for tag nifi-1.24.0-RC1
---

No new revisions were added by this update.



(nifi) branch NIFI-12362-RC1 created (now ad565bc1f5)

2023-11-14 Thread pvillard
This is an automated email from the ASF dual-hosted git repository.

pvillard pushed a change to branch NIFI-12362-RC1
in repository https://gitbox.apache.org/repos/asf/nifi.git


  at ad565bc1f5 NIFI-12362-RC1 prepare for next development iteration

This branch includes the following new commits:

 new 9620b723f6 NIFI-12362-RC1 prepare release nifi-1.24.0-RC1
 new ad565bc1f5 NIFI-12362-RC1 prepare for next development iteration

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.




svn commit: r65279 - /dev/nifi/nifi-1.24.0/

2023-11-14 Thread pvillard
Author: pvillard
Date: Tue Nov 14 16:42:22 2023
New Revision: 65279

Log:
NIFI-12362 Uploaded RC1 artifacts for NiFi 1.24.0

Added:
dev/nifi/nifi-1.24.0/
dev/nifi/nifi-1.24.0/minifi-1.24.0-bin.zip   (with props)
dev/nifi/nifi-1.24.0/minifi-1.24.0-bin.zip.asc
dev/nifi/nifi-1.24.0/minifi-1.24.0-bin.zip.sha256
dev/nifi/nifi-1.24.0/minifi-1.24.0-bin.zip.sha512
dev/nifi/nifi-1.24.0/minifi-c2-1.24.0-bin.zip   (with props)
dev/nifi/nifi-1.24.0/minifi-c2-1.24.0-bin.zip.asc
dev/nifi/nifi-1.24.0/minifi-c2-1.24.0-bin.zip.sha256
dev/nifi/nifi-1.24.0/minifi-c2-1.24.0-bin.zip.sha512
dev/nifi/nifi-1.24.0/minifi-toolkit-1.24.0-bin.zip   (with props)
dev/nifi/nifi-1.24.0/minifi-toolkit-1.24.0-bin.zip.asc
dev/nifi/nifi-1.24.0/minifi-toolkit-1.24.0-bin.zip.sha256
dev/nifi/nifi-1.24.0/minifi-toolkit-1.24.0-bin.zip.sha512
dev/nifi/nifi-1.24.0/nifi-1.24.0-bin.zip   (with props)
dev/nifi/nifi-1.24.0/nifi-1.24.0-bin.zip.asc
dev/nifi/nifi-1.24.0/nifi-1.24.0-bin.zip.sha256
dev/nifi/nifi-1.24.0/nifi-1.24.0-bin.zip.sha512
dev/nifi/nifi-1.24.0/nifi-1.24.0-source-release.zip   (with props)
dev/nifi/nifi-1.24.0/nifi-1.24.0-source-release.zip.asc
dev/nifi/nifi-1.24.0/nifi-1.24.0-source-release.zip.sha256
dev/nifi/nifi-1.24.0/nifi-1.24.0-source-release.zip.sha512
dev/nifi/nifi-1.24.0/nifi-kafka-connector-assembly-1.24.0.zip   (with props)
dev/nifi/nifi-1.24.0/nifi-kafka-connector-assembly-1.24.0.zip.asc
dev/nifi/nifi-1.24.0/nifi-kafka-connector-assembly-1.24.0.zip.sha256
dev/nifi/nifi-1.24.0/nifi-kafka-connector-assembly-1.24.0.zip.sha512
dev/nifi/nifi-1.24.0/nifi-registry-1.24.0-bin.zip   (with props)
dev/nifi/nifi-1.24.0/nifi-registry-1.24.0-bin.zip.asc
dev/nifi/nifi-1.24.0/nifi-registry-1.24.0-bin.zip.sha256
dev/nifi/nifi-1.24.0/nifi-registry-1.24.0-bin.zip.sha512
dev/nifi/nifi-1.24.0/nifi-registry-toolkit-1.24.0-bin.zip   (with props)
dev/nifi/nifi-1.24.0/nifi-registry-toolkit-1.24.0-bin.zip.asc
dev/nifi/nifi-1.24.0/nifi-registry-toolkit-1.24.0-bin.zip.sha256
dev/nifi/nifi-1.24.0/nifi-registry-toolkit-1.24.0-bin.zip.sha512
dev/nifi/nifi-1.24.0/nifi-stateless-1.24.0-bin.zip   (with props)
dev/nifi/nifi-1.24.0/nifi-stateless-1.24.0-bin.zip.asc
dev/nifi/nifi-1.24.0/nifi-stateless-1.24.0-bin.zip.sha256
dev/nifi/nifi-1.24.0/nifi-stateless-1.24.0-bin.zip.sha512
dev/nifi/nifi-1.24.0/nifi-toolkit-1.24.0-bin.zip   (with props)
dev/nifi/nifi-1.24.0/nifi-toolkit-1.24.0-bin.zip.asc
dev/nifi/nifi-1.24.0/nifi-toolkit-1.24.0-bin.zip.sha256
dev/nifi/nifi-1.24.0/nifi-toolkit-1.24.0-bin.zip.sha512

Added: dev/nifi/nifi-1.24.0/minifi-1.24.0-bin.zip
==
Binary file - no diff available.

Propchange: dev/nifi/nifi-1.24.0/minifi-1.24.0-bin.zip
--
svn:mime-type = application/octet-stream

Added: dev/nifi/nifi-1.24.0/minifi-1.24.0-bin.zip.asc
==
--- dev/nifi/nifi-1.24.0/minifi-1.24.0-bin.zip.asc (added)
+++ dev/nifi/nifi-1.24.0/minifi-1.24.0-bin.zip.asc Tue Nov 14 16:42:22 2023
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEP+klwr7XRAIeYWmi+SqTswwHxtUFAmVTlPYACgkQ+SqTswwH
+xtXmig//WSyj6u8r8IlDz2fSTVLqB+3JPa9buIU68m6vhHdpzXF8lK7jc8B9UZ+O
+Uk1yZIkMTEczvpgO3peEY2bCtlkiJf2pgZDV6Locwfhv5wqVOJEXQxsuoIPh3M9R
+ad2pP+og4tNS9iiab6FE62yADCyIbheNaxjvjwivzD5+FbTxqvaCkcCW1HxVpPwI
+w5GrV44uqETNSafYyRPkINM+NGE3lDUdFj4KF/ZvE7yOnrbmQz56a9JhTSHg0mbS
+zERWPXzty2C3gA0j9DI0aXVHkjlGT4FTHcf8G7PYjcQGkWEAOAT8tsS89Qj9lMMU
+K78RAhHyNXnOT63pmeVxEjscV3TTb6p7SS0Ocx5b1AvVcsZAUhQ0h2EelQ8930r8
+sza/PptG00aI1IkBC1TqTQOu9NgzsYAtYmxKcw0/o/0ZxX2WPcKq0KdR/VSEfmvd
+Pw+rsHKdpZEvzG6Pu4iCi4G4uy1A3wKlx5Rud9UGFrbgfvfMH+ydqqGhBLlLRSVp
+PVtKq0SGYHWfnrykAkxckq8/BiL0dF5cQtZQXlai/piXwwgjMF8MmcDpdzdySkYp
+KQwYnDL1D+0EIzN38h+se7VhMZqYniBrtpY6hjRXWV6c0+K3PD/UnByQ2+jOG4IT
+3m3ZyJf+wtzpcDix2aapfvad7hu8VgrPGNuaMuL4RmEY9TwGhYg=
+=EqPi
+-END PGP SIGNATURE-

Added: dev/nifi/nifi-1.24.0/minifi-1.24.0-bin.zip.sha256
==
--- dev/nifi/nifi-1.24.0/minifi-1.24.0-bin.zip.sha256 (added)
+++ dev/nifi/nifi-1.24.0/minifi-1.24.0-bin.zip.sha256 Tue Nov 14 16:42:22 2023
@@ -0,0 +1 @@
+493287c176c7accde023f7b6f1b95e65ec2e34494df202755e6a09647c5b70d3

Added: dev/nifi/nifi-1.24.0/minifi-1.24.0-bin.zip.sha512
==
--- dev/nifi/nifi-1.24.0/minifi-1.24.0-bin.zip.sha512 (added)
+++ dev/nifi/nifi-1.24.0/minifi-1.24.0-bin.zip.sha512 Tue Nov 14 16:42:22 2023
@@ -0,0 +1 @@
+9eb13d5511fd573609e90f2dd8b2e2892753d5dfcc91546baed0ff6cdace9581c925c59c969b8c91746db57533f41d294e4711abc1913342944a470db8edfeef

Added: dev/nifi/nifi-1.24.0/minifi-c2-1.24.0-bin.zip