90e8d9267d
The namespace-partitioned cache flushing was not being used correctly, which could leave standby nodes with stale information. Fixes #8284
12 lines
221 B
Go
12 lines
221 B
Go
// +build !enterprise
|
|
|
|
package vault
|
|
|
|
import (
|
|
"github.com/hashicorp/vault/helper/namespace"
|
|
)
|
|
|
|
func (i *IdentityStore) listNamespaces() []*namespace.Namespace {
|
|
return []*namespace.Namespace{namespace.RootNamespace}
|
|
}
|