Skip to content

Commit

Permalink
fix number of polling delay seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
sigmarkarl committed Jan 15, 2024
1 parent 74abea9 commit b80f713
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/services/src/session/restapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export async function startSession(
body: JSON.stringify(bodyjson)
};
await sleep(2000);
console.log("Waiting for kernel in session " + data.id + " for " + count + " seconds");
console.log("Waiting for kernel in session " + data.id + " for " + 2*count + " seconds");
}
}
if (count >= 300) {
Expand Down

0 comments on commit b80f713

Please sign in to comment.