We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 384d276 commit 2d2efd1Copy full SHA for 2d2efd1
src/baas/scf/index.js
@@ -167,7 +167,7 @@ class Scf {
167
while ((status == 'Updating' || status == 'Creating') && times > 0) {
168
const tempFunc = await this.getFunction(namespace, functionName);
169
status = tempFunc.Status;
170
- await this.sleep(51);
+ await this.sleep(300);
171
times = times - 1;
172
}
173
return status != 'Active' ? false : true;
0 commit comments