Skip to content

Commit

Permalink
dont make it 2 min
Browse files Browse the repository at this point in the history
  • Loading branch information
ianjennings committed Feb 20, 2025
1 parent 18dcb75 commit 5589b7f
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
Original file line number Diff line number Diff line change
Expand Up @@ -41362,7 +41362,7 @@ axios.interceptors.response.use(
const waitUntilWorkflowAvailable = async () => {
let workflowId;
while (!workflowId) {
await waitFor(1000 * 60 * 2);
await waitFor(1000 * 60);
workflowId = await checkWorkflow();
}

Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ axios.interceptors.response.use(
const waitUntilWorkflowAvailable = async () => {
let workflowId;
while (!workflowId) {
await waitFor(1000 * 60 * 2);
await waitFor(1000 * 60);
workflowId = await checkWorkflow();
}

Expand Down

0 comments on commit 5589b7f

Please sign in to comment.