open-vault/vault/identity_store_oidc_util.go
Jim Kalafut 90e8d9267d
Fix identity token caching (#8412)
The namespace-partitioned cache flushing was not being used correctly,
which could leave standby nodes with stale information.

Fixes #8284
2020-02-26 15:56:19 -05:00

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}
}