Skip to content

Commit

Permalink
Updating default values
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalrymple committed Aug 11, 2023
1 parent c5b282d commit 9056e8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/requester-utils/src/BaseResource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function getDynamicToken(tokenArgument: (() => Promise<string>) | string): Promi
// Default rate limits per minute
const DEFAULT_RATE_LIMITS = Object.freeze({
// Default rate limit
'*': 30,
'*': 3000,

// Import/Export
'projects/import': 6,
Expand Down
2 changes: 1 addition & 1 deletion packages/requester-utils/src/RequesterUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,5 +240,5 @@ export function getMatchingRateLimiter(
}
}

return RateLimit(1000);
return RateLimit(3000, { timeUnit: 60000 });
}

0 comments on commit 9056e8d

Please sign in to comment.