We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df28fff commit 448b70eCopy full SHA for 448b70e
1 file changed
core/task/task.go
@@ -173,6 +173,12 @@ func (t *Task) BuildTaskCommand(role parentRole) (err error) {
173
log.WithError(err).Error("cannot fetch variables stack for task command info")
174
return
175
}
176
+ varStack, err = gera.MakeStringMapWithMap(varStack).WrappedAndFlattened(class.Defaults)
177
+ if err != nil {
178
+ log.WithError(err).Error("cannot fetch task class defaults for task command info")
179
+ return
180
+ }
181
+
182
fields := append(
183
template.Fields{
184
template.WrapPointer(cmd.Value),
0 commit comments