Add no-op method setupManagedKeyRegistry(). (#13433)
This commit is contained in:
parent
854da08e45
commit
1136381637
|
@ -2043,6 +2043,9 @@ func (s standardUnsealStrategy) unseal(ctx context.Context, logger log.Logger, c
|
||||||
if err := c.setupPolicyStore(ctx); err != nil {
|
if err := c.setupPolicyStore(ctx); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
if err := c.setupManagedKeyRegistry(); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
if err := c.loadCORSConfig(ctx); err != nil {
|
if err := c.loadCORSConfig(ctx); err != nil {
|
||||||
return err
|
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
|
||||||
|
}
|
Loading…
Reference in a new issue