backport of commit 4a7bee5a02db880d543692386ccd597f33e29624 (#24331)
Co-authored-by: Mike Palmiotto <mike.palmiotto@hashicorp.com>
This commit is contained in:
parent
337be44a90
commit
7dcda6bb20
|
@ -0,0 +1,4 @@
|
|||
```release-note:change
|
||||
identity (enterprise): POST requests to the `/identity/entity/merge` endpoint
|
||||
are now always forwarded from standbys to the active node.
|
||||
```
|
|
@ -231,7 +231,8 @@ func entityPaths(i *IdentityStore) []*framework.Path {
|
|||
},
|
||||
Operations: map[logical.Operation]framework.OperationHandler{
|
||||
logical.UpdateOperation: &framework.PathOperation{
|
||||
Callback: i.pathEntityMergeID(),
|
||||
Callback: i.pathEntityMergeID(),
|
||||
ForwardPerformanceStandby: true,
|
||||
},
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue