2023-06-21 16:39:53 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
|
|
|
//go:build !consulent
|
|
|
|
// +build !consulent
|
|
|
|
|
|
|
|
package xds
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
2023-08-10 18:00:44 +00:00
|
|
|
"github.com/hashicorp/go-hclog"
|
2023-06-21 16:39:53 +00:00
|
|
|
)
|
|
|
|
|
2023-08-10 18:00:44 +00:00
|
|
|
func prioritizeByLocalityFailover(_ hclog.Logger, _ *structs.Locality, _ structs.CheckServiceNodes) []structs.CheckServiceNodes {
|
2023-06-21 16:39:53 +00:00
|
|
|
return nil
|
|
|
|
}
|