Skip to content

Instantly share code, notes, and snippets.

@oleh-zaporozhets
Created October 23, 2021 18:49
Show Gist options
  • Select an option

  • Save oleh-zaporozhets/85d0a4ab0caac8ddc18cf4eb97ed8d14 to your computer and use it in GitHub Desktop.

Select an option

Save oleh-zaporozhets/85d0a4ab0caac8ddc18cf4eb97ed8d14 to your computer and use it in GitHub Desktop.
...
private interceptRequest(config: AxiosRequestConfig) {
const CancelToken = axios.CancelToken;
const cancelToken = new CancelToken((cancel) => cancel('Circuit breaker is open'));
return {
...config,
...(this.isOpen ? { cancelToken } : {}),
};
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment