Bug: scheduled(observable, asapScheduler) not completing
benlesh opened this issue · 2 comments
benlesh commented
After researching #7241, I've concluded that there's a bug where the following will not trigger the complete
handler:
Tested in 7.8.0
scheduled(of('test'), asapScheduler).subscribe({
next: (value) => {
console.log('value received ' + value);
},
complete: () => {
console.log('completed');
},
});
// Expected
"value received test"
"completed"
// Actual
"value received test"
benlesh commented
This should be fixed with the publish of 7.8.1 (just published). Will confirm shortly.
benlesh commented
Confirmed fixed in latest (7.8.1)