Skip to content

Commit

Permalink
chore: update retryDelay to 200ms
Browse files Browse the repository at this point in the history
  • Loading branch information
jackwotherspoon committed Jul 12, 2024
1 parent 8780c02 commit b2d60a9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/sqladmin-fetcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ function setupGaxiosConfig() {
noResponseRetries: 3,
// Defaults to: [[100, 199], [408, 408], [429, 429], [500, 599]]
statusCodesToRetry: [[500, 599]],
// The amount of time to initially delay the retry, in ms. Defaults to 100ms.
retryDelay: 200,
// The multiplier by which to increase the delay time between the
// completion of failed requests, and the initiation of the subsequent
// retrying request. Defaults to 2.
Expand Down

0 comments on commit b2d60a9

Please sign in to comment.