-
Notifications
You must be signed in to change notification settings - Fork 276
Open
Labels
Description
Describe the bug
I am trying to debug a 429 issue that we are currently facing. Our users typically have many tabs open, and if they have more than six tabs, we get rate-limited when they signOut due to too many concurrent requests.
As a result, we had to disable syncStorage to mitigate the 429 errors. However, this has led to a token request being sent from each tab. What is the best way to handle SSO logout when multiple tabs are open, without getting rate-limited, while keeping syncStorage enabled?
We use localStorage for our storage manager and auto renew enabled
Reproduction Steps?
- Open many tabs (6+)
signOutof the application- The six tab gets rate limited
SDK Versions
"@okta/okta-angular": "^6.4.0",
"@okta/okta-auth-js": "^7.10.1",
Additional Information?
No response