diff --git a/tap_recharge/client.py b/tap_recharge/client.py index 1b232f0..0e01c0f 100644 --- a/tap_recharge/client.py +++ b/tap_recharge/client.py @@ -141,8 +141,8 @@ def check_access_token(self): (Server5xxError, ConnectionError, Server429Error), max_tries=5, factor=2) - # Call/rate limit: https://developer.rechargepayments.com/#call-limit - @utils.ratelimit(160, 60) + # Call/rate limit: https://developer.rechargepayments.com/#rate-limits + @utils.ratelimit(120, 60) def request(self, method, path=None, url=None, **kwargs): if not self.__verified: self.__verified = self.check_access_token()