Fixed comments for function maxIndexForService
This commit is contained in:
parent
b26ea3c230
commit
e6d85cb36a
|
@ -760,8 +760,9 @@ func (s *Store) ServicesByNodeMeta(ws memdb.WatchSet, filters map[string]string)
|
|||
}
|
||||
|
||||
// maxIndexForService return the maximum Raft Index for a service
|
||||
// If the index is not set for the service, it will return the max
|
||||
// Raft Index of "nodes", "services"
|
||||
// If the index is not set for the service, it will return:
|
||||
// - maxIndex(nodes, services) if checks if false
|
||||
// - maxIndex(nodes, services, checks) if checks if false
|
||||
func maxIndexForService(tx *memdb.Txn, serviceName string, checks bool) (uint64, error) {
|
||||
transaction, err := tx.First("index", "id", serviceIndexName(serviceName))
|
||||
if err == nil {
|
||||
|
|
Loading…
Reference in New Issue