Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]
Created on 12-15-2022 01:30 AM - edited 12-15-2022 02:19 AM
Hi everyone,
I have a issue on Nifi 1.15.3 InvokeScriptedProcessor (Groovy), I set a custom property in sensitive in my processor, put for value a context parameter which is sensitive too, but when i'm trying to context.getProperty, it return the expression #{blahblah} instead of the value.
This problem is "new", the flow was working, and one day, the token from sensitive value was not evaluated anymore...
My property declaration :
Sensitive property setup :
How i get the property :
It's not the first time I have trouble with sensitive property (It block reboot of Nifi 1.12 for example) but right now I'm stuck...
Thanks by advance
Created on 10-31-2025 12:53 PM - edited 10-31-2025 12:54 PM
I also had the same problem I got it to working temporarily with something like this ${literal('#'):append('{blahblah}'):evaluateELString()} however it wont be supported from 1.19 onwards Refer: https://community.cloudera.com/t5/Support-Questions/Dynamically-references-parameters-from-parameter...
Created 06-24-2023 04:56 PM
Should look more like this:
context.getProperty(externalRequestTokenDescriptor).evaluateAttributeExpressions().getValue()
Created on 10-31-2025 12:53 PM - edited 10-31-2025 12:54 PM
I also had the same problem I got it to working temporarily with something like this ${literal('#'):append('{blahblah}'):evaluateELString()} however it wont be supported from 1.19 onwards Refer: https://community.cloudera.com/t5/Support-Questions/Dynamically-references-parameters-from-parameter...