mirror of https://github.com/status-im/consul.git
22 lines
647 B
Go
22 lines
647 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package proxystateconverter
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
)
|
|
|
|
func groupedEndpoints(locality *structs.Locality, policy *structs.DiscoveryPrioritizeByLocality, csns structs.CheckServiceNodes) ([]structs.CheckServiceNodes, error) {
|
|
switch {
|
|
case policy == nil || policy.Mode == "" || policy.Mode == "none":
|
|
return []structs.CheckServiceNodes{csns}, nil
|
|
case policy.Mode == "failover":
|
|
return prioritizeByLocalityFailover(locality, csns), nil
|
|
default:
|
|
return nil, fmt.Errorf("unexpected priortize-by-locality mode %q", policy.Mode)
|
|
}
|
|
}
|