Skip to content

Commit daca8c5

Browse files
committed
fix(scf): support asyncRunEnable config
1 parent 0477c97 commit daca8c5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/modules/scf/utils.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@ const formatFunctionInputs = (region, inputs) => {
9898
});
9999
}
100100

101+
if (inputs.asyncRunEnable !== undefined) {
102+
functionInputs.AsyncRunEnable = inputs.asyncRunEnable === true ? 'TRUE' : 'FALSE';
103+
}
104+
101105
return functionInputs;
102106
};
103107

0 commit comments

Comments
 (0)