You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.
I would not expect envid to be added to a route twice when it goes through SkyAuthHttp
Actual behavior
We have had a situation where when multiple calls come through SkyAuthHttp quickly some of them end up with the envid parameter appended twice when they are sent out. I was able to debug into the auth-http.ts file and figured out that all requests coming in to the request method did not have an envid parameter set. However, once the flatMap function is called on the Observable.fromPromise the url variable had the envid already appended for some calls thus resulting in the envid being appended a second time later in the function and some requests having the parameter set twice.
The text was updated successfully, but these errors were encountered:
Expected behavior
I would not expect envid to be added to a route twice when it goes through SkyAuthHttp
Actual behavior
We have had a situation where when multiple calls come through SkyAuthHttp quickly some of them end up with the envid parameter appended twice when they are sent out. I was able to debug into the auth-http.ts file and figured out that all requests coming in to the
request
method did not have an envid parameter set. However, once theflatMap
function is called on theObservable.fromPromise
theurl
variable had the envid already appended for some calls thus resulting in the envid being appended a second time later in the function and some requests having the parameter set twice.The text was updated successfully, but these errors were encountered: