Skip to content

Commit

Permalink
fix: extend retries
Browse files Browse the repository at this point in the history
  • Loading branch information
Court Schuett committed Sep 20, 2023
1 parent f915279 commit 5840fea
Show file tree
Hide file tree
Showing 3 changed files with 249 additions and 249 deletions.
2 changes: 1 addition & 1 deletion package.json

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

2 changes: 1 addition & 1 deletion src/resources/pstn/phoneNumber.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const CreatePhoneNumber = async (
let orderSuccessful: boolean = false;
let searchAttempts = 1;

while (searchAttempts < 5) {
while (searchAttempts < 16) {
try {
console.log(
`Searching for available numbers. Search # ${searchAttempts}`,
Expand Down
Loading

0 comments on commit 5840fea

Please sign in to comment.