Skip to content

Commit

Permalink
fix(@angular-devkit/architect): one more fix for newest version of rxjs
Browse files Browse the repository at this point in the history
  • Loading branch information
vikerman committed Jul 2, 2019
1 parent 64eff51 commit 5ef0846
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -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);
}
Expand Down

0 comments on commit 5ef0846

Please sign in to comment.