We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reproduction
const observable = Observable.create(observer => () => console.log('unsubscribe')).pipe(shareReplay(1)) const sub = observable.subscribe(v => console.log(v)); sub.unsubscribe()
not log unsubscribe
Expected behavior log unsubscribe
Environment
Possible Solution rxjs5 is work
The text was updated successfully, but these errors were encountered:
Closing this because it's a known issue and has been addressed, but the PR has not yet been merged. See #4059
Sorry, something went wrong.
No branches or pull requests
Bug Report
Reproduction
not log unsubscribe
Expected behavior
log unsubscribe
Environment
Possible Solution
rxjs5 is work
The text was updated successfully, but these errors were encountered: