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
My NETCore 8 app. It works with Posgress database and has the code:
var userManager = instance of UserManager<IdentityUser>
var user = await userManager.FindByEmailAsync(parameters.Email);
var resetCode = await userManager.GeneratePasswordResetTokenAsync(user);
var result = userManager.SetAuthenticationTokenAsync(user, "demo", "demo", resetCode);
SetAuthenticationTokenAsync returns ConcurencyFailure in some random situations.
I have checked application logs. In normal situations it is like:
My NETCore 8 app. It works with Posgress database and has the code:
SetAuthenticationTokenAsync returns ConcurencyFailure in some random situations.
I have checked application logs. In normal situations it is like:
If the calls fails, I see two AspNetUsers updates for some reason:
For sure the second update fails but I cannot understand library executes it.
The text was updated successfully, but these errors were encountered: