This repository was archived by the owner on Nov 8, 2022. It is now read-only.
This repository was archived by the owner on Nov 8, 2022. It is now read-only.
takeUtil not work in network TIMEOUT workflow #341
Open
Description
when this.stop$ been called, the takeUtil operator not cancel the ajax request as expected.
see details in source file
this.mutate$ = this.mutateInput$.pipe(
debounce(() => timer(300)),
switchMap(q =>
mutatePromise(q).pipe(
timeoutWith(TIMEOUT_THRESHOLD, TimoutObservable),
takeUntil(this.stop$)
)
)
)