Fixed a concurrency bug that would cause periodic timeouts
This commit is contained in:
parent
cab9740221
commit
635e20a510
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ export class KeycloakHttp extends Http {
|
|||
});
|
||||
|
||||
return <Observable<Response>>Observable
|
||||
.merge(tokenObservable, tokenUpdateObservable, requestObservable)
|
||||
.merge(tokenObservable, tokenUpdateObservable, requestObservable, 1) // Insure no concurrency in the merged Observables
|
||||
.filter((response) => response instanceof Response);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue