You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/AbstractAWSProcessor.java
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -190,6 +190,14 @@ protected Collection<ValidationResult> customValidate(final ValidationContext va
if ((proxyUserSet && !proxyPwdSet) || (!proxyUserSet && proxyPwdSet)) {
198
+
problems.add(newValidationResult.Builder().subject("Proxy User and Password").valid(false).explanation("If Proxy Username or Proxy Password is set, both must be set").build());
Copy file name to clipboardExpand all lines: nifi-nar-bundles/nifi-aws-bundle/nifi-aws-abstract-processors/src/main/java/org/apache/nifi/processors/aws/wag/AbstractAWSGatewayApiProcessor.java
+21-63Lines changed: 21 additions & 63 deletions
Original file line number
Diff line number
Diff line change
@@ -117,7 +117,8 @@ public AbstractAWSGatewayApiProcessor(AmazonHttpClient client) {
117
117
"HTTP request method (GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS)."
118
118
+ "Methods other than POST, PUT and PATCH will be sent without a message body.")
Copy file name to clipboardExpand all lines: nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/wag/InvokeAWSGatewayApi.java
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -74,6 +74,7 @@ public class InvokeAWSGatewayApi extends AbstractAWSGatewayApiProcessor {
Copy file name to clipboardExpand all lines: nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/test/java/org/apache/nifi/processors/aws/wag/TestInvokeAWSGatewayApiCommon.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1307,15 +1307,15 @@ public void testProxy() throws Exception {
0 commit comments