ReactiveX/rxjs

Bug: scheduled(observable, asapScheduler) not completing

benlesh opened this issue · 2 comments

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"

This should be fixed with the publish of 7.8.1 (just published). Will confirm shortly.

Confirmed fixed in latest (7.8.1)