#Scylla-ratelimit
1 messages · Page 1 of 1 (latest)
hi! generally if you're hitting a rate limit the fix is to slow down the requests you're making https://stripe.com/docs/rate-limits#handling-limiting-gracefully
But the npm package should deal with rate limit, right ?
not really no
it's application-level logic that you would have to build. The Node library can retry certain requests that fail(https://github.com/stripe/stripe-node#network-retries) , including some lock_timeout rate limits but in general you need to build your own rate limit handling
Sure about that ?
pretty sure, do you have documentation that says our library retries rate limited requests? it's quite possible, there's a lot of stuff at Stripe I have to keep track of, but I don't think we built anything like this