Skip to content

Commit

Permalink
fix(slab): wait 15 mins for instance to be ready instead of 7
Browse files Browse the repository at this point in the history
  • Loading branch information
soonum committed Jun 25, 2024
1 parent 58f2cae commit 1d4b7b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/slab.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ async function startInstanceRequest() {
}

async function waitForInstance(taskId, taskName) {
for (let i = 0; i < 30; i++) {
for (let i = 0; i < 60; i++) {
await utils.sleep(15)

try {
Expand Down

0 comments on commit 1d4b7b7

Please sign in to comment.