Fix DB root rotation replication issue (#8106)
* Fix DB root rotation replication issue * Rebase and switch to new path forward options
This commit is contained in:
parent
57a3b72cde
commit
02cdd8a6da
|
@ -21,8 +21,12 @@ func pathRotateCredentials(b *databaseBackend) []*framework.Path {
|
|||
},
|
||||
},
|
||||
|
||||
Callbacks: map[logical.Operation]framework.OperationFunc{
|
||||
logical.UpdateOperation: b.pathRotateCredentialsUpdate(),
|
||||
Operations: map[logical.Operation]framework.OperationHandler{
|
||||
logical.UpdateOperation: &framework.PathOperation{
|
||||
Callback: b.pathRotateCredentialsUpdate(),
|
||||
ForwardPerformanceSecondary: true,
|
||||
ForwardPerformanceStandby: true,
|
||||
},
|
||||
},
|
||||
|
||||
HelpSynopsis: pathCredsCreateReadHelpSyn,
|
||||
|
|
Loading…
Reference in New Issue