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
Probably working as intended, I'm just looking for clarification
Current Behavior
When firstValueFrom() subscribes to an observable it behaves subtly different than source.pipe(first()).toPromise() because it doesn't unsubscribe from source until after it is done synchronously emitting events.
Bug Report
Probably working as intended, I'm just looking for clarification
Current Behavior
When
firstValueFrom()
subscribes to an observable it behaves subtly different thansource.pipe(first()).toPromise()
because it doesn't unsubscribe from source until after it is done synchronously emitting events.Reproduction
Expected behavior
I expect that subscriber.closed would be true because the consumer is only expecting a single value.
Environment
The text was updated successfully, but these errors were encountered: