1
0
Fork 0
mirror of synced 2024-09-21 03:43:21 +12:00

rename func

This commit is contained in:
Peter Clement 2024-09-11 15:12:50 +01:00
parent e4918aea60
commit 60dd500ecb

View file

@ -552,7 +552,10 @@ class Orchestrator {
}
const stepFn = await this.getStepFunctionality(step.stepId)
let inputs = await this.testProcesss(originalStepInput, this.context)
let inputs = await this.addContextAndProcess(
originalStepInput,
this.context
)
inputs = automationUtils.cleanInputValues(inputs, step.schema.inputs)
@ -580,7 +583,7 @@ class Orchestrator {
return null
}
private async testProcesss(inputs: any, context: any) {
private async addContextAndProcess(inputs: any, context: any) {
const processContext = {
...context,
steps: {