Github user alopresto commented on a diff in the pull request:
https://github.com/apache/nifi/pull/3020#discussion_r219712848
--- Diff:
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/GetHTTP.java
---
@@ -438,8 +446,8 @@ public void onTrigger(final ProcessContext context,
final ProcessSessionFactory
clientBuilder.setSslcontext(sslContextService.createSSLContext(ClientAuth.REQUIRED));
}
- final String username =
context.getProperty(USERNAME).getValue();
- final String password =
context.getProperty(PASSWORD).getValue();
+ final String username =
context.getProperty(USERNAME).evaluateAttributeExpressions().getValue();
+ final String password =
context.getProperty(PASSWORD).evaluateAttributeExpressions().getValue();
--- End diff --
See comment above about `password` supporting EL.
---