mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
7c6a3c83f2
* NET-7165 - v2 - add service questions * removing extraneous copied over code from autogen PR script. * fixing license checking
21 lines
610 B
Go
21 lines
610 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//go:build !consulent
|
|
|
|
package discovery
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
)
|
|
|
|
// fetchServiceFromSamenessGroup fetches a service from a sameness group.
|
|
func (f *V1DataFetcher) fetchServiceFromSamenessGroup(ctx Context, req *QueryPayload, cfg *v1DataFetcherDynamicConfig) ([]*Result, error) {
|
|
f.logger.Debug(fmt.Sprintf("fetchServiceFromSamenessGroup - req: %+v", req))
|
|
if req.Tenancy.SamenessGroup == "" {
|
|
return nil, errors.New("sameness groups must be provided for service lookups")
|
|
}
|
|
return f.fetchServiceBasedOnTenancy(ctx, req, cfg)
|
|
}
|