Is it possible to continue forkjoin http.get requests even if one of the requests fails.
I\'m looking to a similar function of $q.allSettled in angular2.
Se
You could leverage the catch operator for each observable to intercept the error and return another observable in such cases.
Here is a sample:
return Observable.forkJoin(
this.http.get('/some-url')
.map((res:Response) => res.json())
.catch(res:Response => Observable.of({}),
this.http.get('/some-other-url')
.map((res:Response) => res.json())
.catch(res:Response => Observable.of({}),
);