open-nomad/nomad/state/state_store_oss.go
2020-10-22 15:26:32 -07:00

23 lines
584 B
Go

// +build !ent
package state
import (
"github.com/hashicorp/nomad/nomad/structs"
)
// quotaSpecExists on returns whether the quota exists
func (s *StateStore) quotaSpecExists(txn *txn, name string) (bool, error) {
return false, nil
}
func (s *StateStore) quotaReconcile(index uint64, txn *txn, newQuota, oldQuota string) error {
return nil
}
// updateEntWithAlloc is used to update Nomad Enterprise objects when an allocation is
// added/modified/deleted
func (s *StateStore) updateEntWithAlloc(index uint64, new, existing *structs.Allocation, txn *txn) error {
return nil
}