[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:
Nathan Coleman 2024-01-18 19:13:37 -05:00 committed by GitHub
parent 0edfa74d15
commit c40b59823a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 6 deletions

View File

@ -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(),
},