Github user alopresto commented on a diff in the pull request:
https://github.com/apache/nifi/pull/3020#discussion_r219712927
--- Diff:
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/InvokeHTTP.java
---
@@ -632,7 +639,7 @@ public void setUpClient(final ProcessContext context)
throws IOException, Unreco
}
// check the trusted hostname property and override the
HostnameVerifier
- String trustedHostname =
trimToEmpty(context.getProperty(PROP_TRUSTED_HOSTNAME).getValue());
+ String trustedHostname =
trimToEmpty(context.getProperty(PROP_TRUSTED_HOSTNAME).evaluateAttributeExpressions().getValue());
--- End diff --
See comment about `trustedHostname` above.
---