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 when currency limiting is enabled and a request fails there is no way to tell other related requests to cancel. I'm proposing a new shared map function that will allow requests to be grouped and cancelable as a unit.
The text was updated successfully, but these errors were encountered:
The map function could receive an array of request objects and then call self._request on each of them with the additional cancelToken option. In the catch block of the promise.all you could then .cancel on each of the other promises. Or the map function could return a promise which in turn has a .cancel function that when called .cancels all of the request promises.
Currently when currency limiting is enabled and a request fails there is no way to tell other related requests to cancel. I'm proposing a new shared map function that will allow requests to be grouped and cancelable as a unit.
The text was updated successfully, but these errors were encountered: