Alex Cano
09/10/2020, 8:27 PMflow_groups
? I can’t seem to find docs on what they exactly are. As a guess, they look like they can be used to apply settings across many flows? I’m specifically thinking about flow_groups
with regards to implementing Flow Concurrency Limits into the new server codebase, so it’s looking like (based on some other code) we look at the flow_group
labels first, then default to the environment
labels? Is that how it should be implemented for this as well? Or should it be checking both sets of labels? I’d guess both sets, but not sureDylan
09/10/2020, 8:33 PMAlex Cano
09/10/2020, 8:34 PMDylan
09/10/2020, 8:34 PMAlex Cano
09/10/2020, 8:36 PMDylan
09/10/2020, 8:39 PMAlex Cano
09/10/2020, 8:40 PMnicholas
09/10/2020, 8:51 PMif flowGroup.setting is not None:
use flowGroup.setting
else:
use flow.setting
Dylan
09/10/2020, 8:53 PM