Skip to content

Commit

Permalink
fix: reduce max attempts to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
abuaboud committed Jan 25, 2024
1 parent b367eb0 commit 0837058
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ type RetryConstants = {
retryInterval: number
}
const DEFAULT_RETRY_CONSTANTS: RetryConstants = {
maxAttempts: 4,
maxAttempts: 1,
retryExponential: 6,
retryInterval: 1000,
}
Expand Down

0 comments on commit 0837058

Please sign in to comment.