is there any way to check a global parameter is set or not? #7401
-
The title said it. I have several conditional executions in my dag, so some global output parameters might not be set if some previous tasks are skipped. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I solution that I found out to be working is to start by setting them up to some "empty" or "null" equivalent result and then override them with the conditional task. it's not very neat, but if you can define a null result, it might work for you. |
Beta Was this translation helpful? Give feedback.
-
You can assign a default value in
|
Beta Was this translation helpful? Give feedback.
You can assign a default value in
valueFrom.default
and then check whether your parameter value is the default.