Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Common variable for execution groups

If i create an environment variable will it exist in all flows within the execution group? I need to have a value which has to be shared between two flows in the same execution group.

like image 735
Smitha Avatar asked Nov 18 '25 04:11

Smitha


1 Answers

Nope. The environment variable has its scope set for a particular flow. If you want to share a value between two flows, either you will have to pass it on as a message or use User defined properties (UDP) to set it to all flows in the execution group.

like image 60
Richie Avatar answered Nov 20 '25 20:11

Richie