You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constsource1=Observable.create(()=>()=>{thrownewError('I am an error');});constsource2=Observable.timer(1000);constsource3=Observable.create(()=>()=>{thrownewError('I am another error');});constsource=source1.merge(source2,source3);constsubscription=source.subscribe();subscription.unsubscribe();
Expected behavior:
Console logs out something readable to the effect of UnsubscriptionError: 1) Error: I am an error 2) Error: I am another error.
Actual behavior:
Console only logs out UnsubscriptionError. User is expect to catch it an analyze the errors property to glean information.
Additional information:
Ideally we could even link additional information about what an Unsubscription error is.
Important note for the example above. source2 should still be torn down.
The text was updated successfully, but these errors were encountered:
RxJS version: 5.0.0-beta.5
Code to reproduce:
Expected behavior:
Console logs out something readable to the effect of
UnsubscriptionError: 1) Error: I am an error 2) Error: I am another error
.Actual behavior:
Console only logs out
UnsubscriptionError
. User is expect to catch it an analyze theerrors
property to glean information.Additional information:
Ideally we could even link additional information about what an Unsubscription error is.
Important note for the example above.
source2
should still be torn down.The text was updated successfully, but these errors were encountered: