Mansoor Omrani
Mansoor Omrani
Hi @alexandrnikitin The reason I proposed for something like a CircuitBreaker store was that I believe the same CircuitBreaker object should open the circuit when it is closed. If we...
@alexandrnikitin I understand what you mean. My humble suggestion is to move the concern of storing state out of circuit breaker into another class, if possible. This makes circuit breaker...
@alexandrnikitin Hi alex. The requirement for the change I made was to embed the potential exception that occurs in user's given action in the CircuitBreaker exception (in its InnerException). Currently...
Thank you for your reply. No. It's not because of missing [AllowAnonymous] (when you create an MVC application, the Login() action in AccountController is already decorated with [AllowAnonymous]). I ask...
Sorry for not describing my setup or version numbers. Yes. I can provide my code repo. But the code consists of multiple files. How can I write multiple code files...
I got it. I create a repo for that in a moment.
Hi back. I created a test project and put it [here](https://github.com/mansoor-omrani/TestAspNetIdentityRedirectLoop) I need to say that I had set validateInterval parameter in CookieAuthenticationProvider.OnValidateIdentity to zero because I noticed 'Remember Me'...
I think setting validateInterval to zero for OnValidateIdentity while being awkward should not make this issue. I will change it definitely in my personal project, but my project was working...
That's correct. But I'm not sending unauthorized users to login page. It is the [Authorize] filter.
> ... > 401 when you already are logged in will result in this infinite login behavior (since you already are logged in but never will become an admin just...