open-nomad/nomad/state/state_store_oss.go
Alex Dadgar e5ec915ac3 sync
2017-09-19 10:08:23 -05:00

14 lines
325 B
Go

// +build !pro,!ent
package state
import (
memdb "github.com/hashicorp/go-memdb"
"github.com/hashicorp/nomad/nomad/structs"
)
// namespaceExists returns whether a namespace exists
func (s *StateStore) namespaceExists(txn *memdb.Txn, namespace string) (bool, error) {
return namespace == structs.DefaultNamespace, nil
}