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
Given this code:
import { throwError, of, config } from "rxjs"; import { concatMap } from "rxjs/operators"; console.clear(); config.useDeprecatedSynchronousErrorHandling = true; try { of(1) .pipe(concatMap(() => throwError(new Error("test")))) .subscribe(console.log); } catch (err) { console.log("Caught!", err); }
It should log "Caught!" and the error, but it does not.
"Caught!"
Related: #5979
cc @leggechr
The text was updated successfully, but these errors were encountered:
fix: useDeprecatedSynchronousErrorThrowing honored for flattened sync…
73f76eb
… sources fixes ReactiveX#5983
abd95ce
… sources (#5984) fixes #5983
benlesh
Successfully merging a pull request may close this issue.
Given this code:
It should log
"Caught!"
and the error, but it does not.Related: #5979
cc @leggechr
The text was updated successfully, but these errors were encountered: