Skip to content
New issue

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

withLatestFrom does not emit with synchronous source #5827

Closed
kwonoj opened this issue Oct 15, 2020 · 0 comments · Fixed by #5828
Closed

withLatestFrom does not emit with synchronous source #5827

kwonoj opened this issue Oct 15, 2020 · 0 comments · Fixed by #5828
Assignees

Comments

@kwonoj
Copy link
Member

kwonoj commented Oct 15, 2020

Bug Report

https://stackblitz.com/edit/rxjs-bavruf?file=index.ts

of(1, 2, 3)
  .pipe(withLatestFrom(of(4, 5)))
  .subscribe(x => {
    console.log(x);
  });

does not emit anything. Looks like refactored implementation's control flag

and others preventing subscribing into sync sources.

Current Behavior
A clear and concise description of the behavior.

Reproduction

var your => (code) => here;

Expected behavior
A clear and concise description of what you expected to happen (or code).

Environment

  • Runtime: [e.g. Node v${x}, Chrome v${x}]
  • RxJS version:
  • (If bug is related) Loader, build configuration: [e.g webpack, angular-cli version, config]

Possible Solution

Additional context/Screenshots
Add any other context about the problem here. If applicable, add screenshots to help explain.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants