backport of commit 9b1120b083 (#23915)

Co-authored-by: davidadeleon <56207066+davidadeleon@users.noreply.github.com>
This commit is contained in:
hc-github-team-secure-vault-core
2023-10-31 10:50:05 -04:00
committed by GitHub
parent 957a2b7e65
commit b8b54a0249
2 changed files with 4 additions and 1 deletions

3
changelog/23894.txt Normal file
View File

@@ -0,0 +1,3 @@
```release-note:bug
core: Skip unnecessary deriving of policies during Login MFA Check.
```

View File

@@ -1673,7 +1673,7 @@ func (c *Core) handleLoginRequest(ctx context.Context, req *logical.Request) (re
source := c.router.MatchingMount(ctx, req.Path)
// Login MFA
entity, _, err := c.fetchEntityAndDerivedPolicies(ctx, ns, auth.EntityID, false)
entity, _, err := c.fetchEntityAndDerivedPolicies(ctx, ns, auth.EntityID, true)
if err != nil {
return nil, nil, ErrInternalError
}