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 2c0ff6f624 NIFI-12303 Removed deprecated Consumer Hostname property 
from ConsumeAzureEventHub
2c0ff6f624 is described below

commit 2c0ff6f6249c04b7121113ce199761747364eb5d
Author: Peter Turcsanyi <[email protected]>
AuthorDate: Wed Nov 1 13:14:45 2023 +0100

    NIFI-12303 Removed deprecated Consumer Hostname property from 
ConsumeAzureEventHub
    
    This closes #7966
    
    Signed-off-by: David Handermann <[email protected]>
---
 .../nifi/processors/azure/eventhub/ConsumeAzureEventHub.java     | 9 ---------
 1 file changed, 9 deletions(-)

diff --git 
a/nifi-nar-bundles/nifi-azure-bundle/nifi-azure-processors/src/main/java/org/apache/nifi/processors/azure/eventhub/ConsumeAzureEventHub.java
 
b/nifi-nar-bundles/nifi-azure-bundle/nifi-azure-processors/src/main/java/org/apache/nifi/processors/azure/eventhub/ConsumeAzureEventHub.java
index 8739172876..a3aef2affd 100644
--- 
a/nifi-nar-bundles/nifi-azure-bundle/nifi-azure-processors/src/main/java/org/apache/nifi/processors/azure/eventhub/ConsumeAzureEventHub.java
+++ 
b/nifi-nar-bundles/nifi-azure-bundle/nifi-azure-processors/src/main/java/org/apache/nifi/processors/azure/eventhub/ConsumeAzureEventHub.java
@@ -148,14 +148,6 @@ public class ConsumeAzureEventHub extends 
AbstractSessionFactoryProcessor implem
             .defaultValue("$Default")
             .required(true)
             .build();
-    static final PropertyDescriptor CONSUMER_HOSTNAME = new 
PropertyDescriptor.Builder()
-            .name("event-hub-consumer-hostname")
-            .displayName("Consumer Hostname")
-            .description("DEPRECATED: This property is no longer used.")
-            .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
-            .expressionLanguageSupported(ExpressionLanguageScope.ENVIRONMENT)
-            .required(false)
-            .build();
 
     static final PropertyDescriptor RECORD_READER = new 
PropertyDescriptor.Builder()
             .name("record-reader")
@@ -291,7 +283,6 @@ public class ConsumeAzureEventHub extends 
AbstractSessionFactoryProcessor implem
                 POLICY_PRIMARY_KEY,
                 USE_MANAGED_IDENTITY,
                 CONSUMER_GROUP,
-                CONSUMER_HOSTNAME,
                 RECORD_READER,
                 RECORD_WRITER,
                 INITIAL_OFFSET,

Reply via email to