core/config: remove version

This commit is contained in:
Caleb Doxsey 2023-10-31 12:16:00 -06:00
parent a29476f61e
commit aa619424df
8 changed files with 760 additions and 798 deletions

View file

@ -24,7 +24,7 @@ func (srv *Server) buildDiscoveryResources(ctx context.Context) (map[string][]*e
cfg := srv.currentConfig.Load()
log.Info(ctx).Int64("config-version", cfg.Version).Msg("controlplane: building discovery resources")
log.Info(ctx).Msg("controlplane: building discovery resources")
resources := map[string][]*envoy_service_discovery_v3.Resource{}
var clusterCount, listenerCount, routeConfigurationCount int
@ -69,7 +69,6 @@ func (srv *Server) buildDiscoveryResources(ctx context.Context) (map[string][]*e
}
log.Info(ctx).
Int64("config-version", cfg.Version).
Int("cluster-count", clusterCount).
Int("listener-count", listenerCount).
Int("route-configuration-count", routeConfigurationCount).