From 49556f208abd006372b7f61efdf5d847f0229735 Mon Sep 17 00:00:00 2001 From: Joe Gresock Date: Wed, 21 Aug 2024 05:29:32 -0400 Subject: [PATCH] NIFI-13669: Adding alternative processor suggestion in InvokeAWSGatewayApi deprecation notice Signed-off-by: Matt Burgess This closes #9189 --- .../org/apache/nifi/processors/aws/wag/InvokeAWSGatewayApi.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/wag/InvokeAWSGatewayApi.java b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/wag/InvokeAWSGatewayApi.java index 0caa9f68b6c6..151e4e84bc3b 100644 --- a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/wag/InvokeAWSGatewayApi.java +++ b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/wag/InvokeAWSGatewayApi.java @@ -72,7 +72,7 @@ "Send request header " + "with a key matching the Dynamic Property Key and a value created by evaluating the Attribute Expression Language set in the value " + "of the Dynamic Property.") -@DeprecationNotice(reason = "Planned for removal in NiFi 2.0") +@DeprecationNotice(reason = "Planned for removal in NiFi 2.0. InvokeHTTP is the preferred alternative processor.") public class InvokeAWSGatewayApi extends AbstractAWSGatewayApiProcessor { private static final Set IDEMPOTENT_METHODS = new HashSet<>(Arrays.asList("GET", "HEAD", "OPTIONS"));