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 was archived by the owner on Nov 1, 2023. It is now read-only.
On one particular API controller action I have the following attribute:
[EnableThrottling(PerSecond = 2, PerMinute = 3)]
After 3 attempts to hit the endpoint within 3 minutes the throttle is applied but not just for the current user but for everyone. Does the attribute need to explicitly apply the ipThrottling boolean or should it inherit the config from the web.config and simply override the attributes set on the controller action?