Skip to content

AjaxObservable: does not error when aborted #4251

Closed
@OliverJAsh

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

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

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions