Skip to content

Commit

Permalink
typo for ten minute timeout after wait interval was changed from 1 to…
Browse files Browse the repository at this point in the history
… 2 seconds
  • Loading branch information
sigmarkarl committed Jan 10, 2024
1 parent dbbec42 commit 14c5dc6
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 @@ -112,7 +112,7 @@ export async function startSession(
};
let data = {"id": "", "execution_state": "waiting"};
let count = 0
while (count++ < 600) {
while (count++ < 300) {
const response = await ServerConnection.makeRequest(url, init, settings);
if (response.status !== 201) {
throw await ServerConnection.ResponseError.create(response);
Expand Down

0 comments on commit 14c5dc6

Please sign in to comment.