mirror of https://github.com/hashicorp/consul
Move IndexEntryName helpers to common files (#12365)
parent
6051c68620
commit
154b781bc8
@ -0,0 +1,14 @@
|
||||
//go:build !consulent
|
||||
// +build !consulent
|
||||
|
||||
package state
|
||||
|
||||
import "github.com/hashicorp/consul/agent/structs"
|
||||
|
||||
func partitionedIndexEntryName(entry string, _ string) string {
|
||||
return entry
|
||||
}
|
||||
|
||||
func partitionedAndNamespacedIndexEntryName(entry string, _ *structs.EnterpriseMeta) string {
|
||||
return entry
|
||||
}
|
Loading…
Reference in new issue