mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-16 18:43:42 +08:00
fix(@angular-devkit/architect): one more fix for newest version of rxjs
This commit is contained in:
parent
64eff51be6
commit
5ef0846214
@ -509,7 +509,8 @@ export class SimpleScheduler<
|
||||
waitable,
|
||||
|
||||
from(handler).pipe(
|
||||
switchMap(handler => new Observable((subscriber: Observer<JobOutboundMessage<O>>) => {
|
||||
switchMap(handler => new Observable<JobOutboundMessage<O>>(
|
||||
(subscriber: Observer<JobOutboundMessage<O>>) => {
|
||||
if (!handler) {
|
||||
throw new JobDoesNotExistException(name);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user