You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As currently implemented the code will wait for 15min (900 seconds) when the API encounters a HTTP 429 status code. A static 15min pause is not the most optimal way to wait.
Using an exponential backoff strategy is more likely to decrease the time the code is waiting but the rate limit window is back open.
The text was updated successfully, but these errors were encountered:
As currently implemented the code will wait for 15min (900 seconds) when the API encounters a HTTP 429 status code. A static 15min pause is not the most optimal way to wait.
Using an exponential backoff strategy is more likely to decrease the time the code is waiting but the rate limit window is back open.
The text was updated successfully, but these errors were encountered: