Github user kemixkoo commented on a diff in the pull request:
https://github.com/apache/nifi/pull/3020#discussion_r219832541
--- Diff:
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/GetHTTP.java
---
@@ -177,19 +180,22 @@
.name("Username")
.description("Username required to access the URL")
.required(false)
+
.expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
.addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
.build();
public static final PropertyDescriptor PASSWORD = new
PropertyDescriptor.Builder()
.name("Password")
.description("Password required to access the URL")
.required(false)
.sensitive(true)
+
.expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
--- End diff --
Yes, I totally agree with the policy for password. but, In my case, I have
several processors with the same password, when I change the account from dev
to prod, I have to do change for all processors.
Also, I saw the "PROP_PROXY_PASSWORD" property support the EL in InvokeHTTP.
---