backport of commit 9b1120b0830060b3656977b4ce0d357fda2e5036 (#23917)
Co-authored-by: davidadeleon <56207066+davidadeleon@users.noreply.github.com>
This commit is contained in:
parent
a5cd06dc04
commit
0b1ceb8943
|
@ -0,0 +1,3 @@
|
|||
```release-note:bug
|
||||
core: Skip unnecessary deriving of policies during Login MFA Check.
|
||||
```
|
|
@ -1659,7 +1659,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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue