Change local cluster info path

This commit is contained in:
Jeff Mitchell 2016-08-09 11:28:42 -04:00
parent c27a52069c
commit 4246ab1220
1 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ import (
const (
// Storage path where the local cluster name and identifier are stored
coreLocalClusterPath = "core/cluster/local"
coreLocalClusterInfoPath = "core/cluster/local/info"
)
// Structure representing the storage entry that holds cluster information
@ -26,7 +26,7 @@ type Cluster struct {
// input. This method errors out when Vault is sealed.
func (c *Core) Cluster() (*Cluster, error) {
// Fetch the storage entry. This call fails when Vault is sealed.
entry, err := c.barrier.Get(coreLocalClusterPath)
entry, err := c.barrier.Get(coreLocalClusterInfoPath)
if err != nil {
return nil, err
}
@ -92,7 +92,7 @@ func (c *Core) setupCluster() error {
// Store it
return c.barrier.Put(&Entry{
Key: coreLocalClusterPath,
Key: coreLocalClusterInfoPath,
Value: rawCluster,
})