We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 757ef14 commit 75d7067Copy full SHA for 75d7067
2 files changed
core/workflow/aggregatorrole.go
@@ -117,6 +117,7 @@ func (r *aggregatorRole) ProcessTemplates(workflowRepo *repos.Repo) (err error)
117
r.resolveOutboundChannelTargets()
118
119
for _, role := range r.Roles {
120
+ role.setParent(r)
121
err = role.ProcessTemplates(workflowRepo)
122
if err != nil {
123
return
core/workflow/iteratorrole.go
@@ -178,6 +178,9 @@ func (i *iteratorRole) expandTemplate() (err error) {
178
}
179
180
i.Roles = roles
181
+ for j := 0; j < len(i.Roles); j++ {
182
+ i.Roles[j].setParent(i.GetParent())
183
+ }
184
185
186
0 commit comments