Eli Israel

Results 5 comments of Eli Israel

The bug is on line 124 of request. py. the 429 status returns a header named "retry-after". That field specifies the number of seconds the Client must wait before trying...

The bug is on line 124 of request. py. the 429 status returns a header named "retry-after". That field specifies the number of seconds the Client must wait before trying...

I will also note that the exponential backoff as implemented is broken. The wait time is computed as the min() of 2 raised to the power of the attempt number...