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
When a new search is issued, we have to cancel the pending one to prevent a race condition. Presently, this means aborting the following requests: datasets, datasets number and datasets annotations.
This is supported by Axios, but not vuex-rest-api. It would be nice to be able to dispatch the store and include a signal to effectively cancel the dispatch later on, or have some built-in mechanism for binding the cancel state to the store. More details at https://axios-http.com/docs/cancellation
When a new search is issued, we have to cancel the pending one to prevent a race condition. Presently, this means aborting the following requests: datasets, datasets number and datasets annotations.
This is supported by Axios, but not vuex-rest-api. It would be nice to be able to dispatch the store and include a
signal
to effectively cancel the dispatch later on, or have some built-in mechanism for binding the cancel state to the store. More details at https://axios-http.com/docs/cancellationThe native API for browser is AbortController.
The text was updated successfully, but these errors were encountered: