Open kgpayne opened 1 year ago
Is this repo somewhat still maintained? I think the backoff solution looks fine or something as simple as a variable to add a delay between requests that can be set as a config parameter would also work
Is this repo somewhat still maintained? I think the backoff solution looks fine or something as simple as a variable to add a delay between requests that can be set as a config parameter would also work
@AlejandroUPC would you like to submit a PR?
yes expect one today, been quite busy sorry
During testing with the new standard tests framework, I am hitting
429 Client Error: Too Many Requests for path
errors for the/projects/../pipelines/
API.According to the Mozilla http code reference:
If this is available from the GitLab API, we should use this to wait the appropriate time (rather than using exponential backoff, as is default in the SDK).
EDIT: this appears to be supported in the
backoff
python library here 🚀