SDK version: 19.7.3, but the behaviour is the same on the latest version as well
We're using the ConcurrentModificationMiddleware to retry the requests in case of a 409 concurrent modification response. It works great for POST HTTP requests, but it doesn't work at all for DELETE HTTP requests. For DELETE requests, when our service receives a 409 concurrent modification response, it just does nothing for a couple of seconds (waits for all the delays between the retries) without doing actual retry requests.
Is it possible to update this middleware to also work for DELETE requests?
SDK version: 19.7.3, but the behaviour is the same on the latest version as well
We're using the
ConcurrentModificationMiddlewareto retry the requests in case of a 409 concurrent modification response. It works great forPOSTHTTP requests, but it doesn't work at all forDELETEHTTP requests. ForDELETErequests, when our service receives a 409 concurrent modification response, it just does nothing for a couple of seconds (waits for all the delays between the retries) without doing actual retry requests.Is it possible to update this middleware to also work for
DELETErequests?