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
Currently the batch_add_requests method of RequestQueueClient(Async) is doing some retries based on the status code response, this seems to duplicate retries already happening in HttpClient, that is already retrying the requests as well.
The retries in RequestQueueClient(Async) seems unnecessary.
The text was updated successfully, but these errors were encountered:
Pijukatel
added
debt
Code quality improvement or decrease of technical debt.
t-tooling
Issues with this label are in the ownership of the tooling team.
labels
Apr 23, 2025
### Description
Remove retries from `batch_add_requests` (such retries already exist on
the http client level).
Add deprecation warnings when retires related arguments are used.
Align sync and async version to not ignore exceptions from the http
client.
Add tests.
### Issues
- Closes: #390
Currently the
batch_add_requests
method ofRequestQueueClient(Async)
is doing some retries based on the status code response, this seems to duplicate retries already happening inHttpClient
, that is already retrying the requests as well.The retries in
RequestQueueClient(Async)
seems unnecessary.The text was updated successfully, but these errors were encountered: