Re: Can I define variables using other variables (or expression language)?

2018-11-06 Thread Koji Kawamura
Hi Krzysztof, Currently, NiFi variables cannot refer other variables. But you may be able to achieve the expected result if you combine multiple variables within a single Expression Language. For example, if the "scratch_path" is the one you need to use at ListFile processor's "Input directory",

Can I define variables using other variables (or expression language)?

2018-11-06 Thread Krzysztof Zarzycki
Hi community, I'm using Nifi Variable Registry (through UI). I would like to define one variable using value from other variable, like: env = staging scratch_path=/${env}/scratch I tried exactly that approach, but it didn't work, the variable scratch_path gets value literally /${env}/scratch. Do