mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-30 02:02:43 +00:00
Add no-op method setupManagedKeyRegistry(). (#13433)
This commit is contained in:
@@ -2043,6 +2043,9 @@ func (s standardUnsealStrategy) unseal(ctx context.Context, logger log.Logger, c
|
||||
if err := c.setupPolicyStore(ctx); err != nil {
|
||||
return err
|
||||
}
|
||||
if err := c.setupManagedKeyRegistry(); err != nil {
|
||||
return err
|
||||
}
|
||||
if err := c.loadCORSConfig(ctx); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
7
vault/managed_key_registry.go
Normal file
7
vault/managed_key_registry.go
Normal file
@@ -0,0 +1,7 @@
|
||||
// +build !enterprise
|
||||
|
||||
package vault
|
||||
|
||||
func (c *Core) setupManagedKeyRegistry() error {
|
||||
return nil
|
||||
}
|
||||
Reference in New Issue
Block a user