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 {
|
||||
return err
|
||||
}
|
||||
if err := c.setupManagedKeyRegistry(); err != nil {
|
||||
return err
|
||||
}
|
||||
if err := c.loadCORSConfig(ctx); err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
// +build !enterprise
|
||||
|
||||
package vault
|
||||
|
||||
func (c *Core) setupManagedKeyRegistry() error {
|
||||
return nil
|
||||
}
|
Loading…
Reference in New Issue