2021-10-01 13:59:55 +00:00
|
|
|
//go:build !ent
|
2017-10-13 21:36:02 +00:00
|
|
|
// +build !ent
|
|
|
|
|
|
|
|
package nomad
|
|
|
|
|
|
|
|
// allocQuota returns the quota object associated with the allocation. In
|
|
|
|
// anything but Premium this will always be empty
|
2022-01-13 10:32:16 +00:00
|
|
|
func (n *nomadFSM) allocQuota(_ string) (string, error) {
|
2017-10-13 21:36:02 +00:00
|
|
|
return "", nil
|
|
|
|
}
|