mirror of https://github.com/status-im/consul.git
[NET-6431] Remove explicit endpoints function from PST builder (#20262)
This isn't needed since we just populate RequiredEndpoints, which is already done for the base case
This commit is contained in:
parent
0edfa74d15
commit
c40b59823a
|
@ -195,11 +195,6 @@ func (b *proxyStateTemplateBuilder) clusters() map[string]*pbproxystate.Cluster
|
|||
return clusters
|
||||
}
|
||||
|
||||
func (b *proxyStateTemplateBuilder) endpoints() map[string]*pbproxystate.Endpoints {
|
||||
// TODO NET-6431
|
||||
return nil
|
||||
}
|
||||
|
||||
func (b *proxyStateTemplateBuilder) routes() map[string]*pbproxystate.Route {
|
||||
// TODO NET-6428
|
||||
return nil
|
||||
|
@ -210,7 +205,6 @@ func (b *proxyStateTemplateBuilder) Build() *meshv2beta1.ProxyStateTemplate {
|
|||
ProxyState: &meshv2beta1.ProxyState{
|
||||
Identity: b.identity(),
|
||||
Listeners: b.listeners(),
|
||||
Endpoints: b.endpoints(),
|
||||
Clusters: b.clusters(),
|
||||
Routes: b.routes(),
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue