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 f9d713494f NIFI-11219 Set Qpid Proton J 0.34.0 for Azure EventHubs
f9d713494f is described below
commit f9d713494fc0409d7a8ec69d82bf264b1c4197ea
Author: exceptionfactory <[email protected]>
AuthorDate: Sat Feb 25 13:03:37 2023 -0600
NIFI-11219 Set Qpid Proton J 0.34.0 for Azure EventHubs
- Overrides Qpid Proton J 0.33.8 from azure-core-amqp 2.8.1 to resolve
PROTON-2347
This closes #6988.
Signed-off-by: Peter Turcsanyi <[email protected]>
---
nifi-nar-bundles/nifi-azure-bundle/pom.xml | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/nifi-nar-bundles/nifi-azure-bundle/pom.xml
b/nifi-nar-bundles/nifi-azure-bundle/pom.xml
index 927eb403ac..db952a3f47 100644
--- a/nifi-nar-bundles/nifi-azure-bundle/pom.xml
+++ b/nifi-nar-bundles/nifi-azure-bundle/pom.xml
@@ -29,6 +29,7 @@
<azure.sdk.bom.version>1.2.9</azure.sdk.bom.version>
<microsoft.azure-storage.version>8.6.6</microsoft.azure-storage.version>
<msal4j.version>1.13.3</msal4j.version>
+ <qpid.proton.version>0.34.0</qpid.proton.version>
</properties>
<modules>
@@ -60,6 +61,12 @@
<artifactId>guava</artifactId>
<version>31.1-jre</version>
</dependency>
+ <!-- Override Apache Qpid Proton J for Azure EventHubs to resolve
PROTON-2347 -->
+ <dependency>
+ <groupId>org.apache.qpid</groupId>
+ <artifactId>proton-j</artifactId>
+ <version>${qpid.proton.version}</version>
+ </dependency>
</dependencies>
</dependencyManagement>
</project>