Fix async loading of steps

This commit is contained in:
Andrew Kingston 2020-09-10 15:29:01 +01:00
parent e3707982de
commit 52aaac8e44
1 changed files with 2 additions and 2 deletions

View File

@ -34,8 +34,8 @@ class Orchestrator {
if (!workflow.live) {
return
}
for (let block of workflow.steps) {
let step = this.getStep(block.type, block.stepId)
for (let block of workflow.definition.steps) {
let step = await this.getStep(block.type, block.stepId)
let args = { ...block.args }
// bind the workflow action args to the workflow context, if required
for (let arg of Object.keys(args)) {