Skip to content

Commit

Permalink
Increase time until next retry for search tests data indexing
Browse files Browse the repository at this point in the history
  • Loading branch information
eminano committed Nov 29, 2023
1 parent eef75e9 commit efbce3a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/integration/aggregate.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,6 @@ async function waitForSearchIndexing(): Promise<void> {
} catch (error) {
// do nothing
}
await new Promise((resolve) => setTimeout(resolve, 2000));
await new Promise((resolve) => setTimeout(resolve, 5000));
return waitForSearchIndexing();
}
2 changes: 1 addition & 1 deletion test/integration/search.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,6 @@ async function waitForSearchIndexing(): Promise<void> {
} catch (error) {
// do nothing
}
await new Promise((resolve) => setTimeout(resolve, 2000));
await new Promise((resolve) => setTimeout(resolve, 5000));
return waitForSearchIndexing();
}
2 changes: 1 addition & 1 deletion test/integration/vectorSearch.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,6 @@ async function waitForSearchIndexing(): Promise<void> {
} catch (error) {
// do nothing
}
await new Promise((resolve) => setTimeout(resolve, 2000));
await new Promise((resolve) => setTimeout(resolve, 5000));
return waitForSearchIndexing();
}

0 comments on commit efbce3a

Please sign in to comment.