Closed
Description
Bug Report
Copied from #4105
Current Behavior
It is possible for an XHR to be aborted externally, for example when the machine loses connectivity, or when the machine is sent to sleep.
Currently, when the XHR is aborted in this way, the observable does not error and the subscription remains.
Reproduction
- REPL or Repo link: https://rxjs-yf3lex.stackblitz.io/
import { ajax } from 'rxjs/ajax'
ajax.get('https://httpbin.org/delay/10').subscribe();
Whilst request is pending, send machine to sleep.
When machine is woken, request is aborted, but observable did not error.
Expected behavior
In this case, I think we would want to error the observable? Although it might also be useful to emit something to indicate it was aborted.
Environment
- Runtime: all envs that support
AjaxObservable
- RxJS version: 6.3.3
Possible Solution
Additional context/Screenshots
Metadata
Assignees
Labels
No labels
Activity