From feea22ca852419f66c4eda7e51ab03993fdec21a Mon Sep 17 00:00:00 2001 From: Tom Davies Date: Sun, 25 Aug 2024 00:33:00 +0100 Subject: [PATCH] xds: fixes typo in multi hostname warning --- agent/xds/clusters.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/xds/clusters.go b/agent/xds/clusters.go index 40e7906526047..06b2e77445c7e 100644 --- a/agent/xds/clusters.go +++ b/agent/xds/clusters.go @@ -1853,7 +1853,7 @@ func configureClusterWithHostnames( endpoints = append(endpoints, fallback) } if len(uniqueHostnames) > 1 && envoyMaxEndpoints == 1 { - logger.Warn(fmt.Sprintf("service contains instances with more than one unique hostname; only %q be resolved by Envoy", hostname), + logger.Warn(fmt.Sprintf("service contains instances with more than one unique hostname; only %q will be resolved by Envoy", hostname), "dc", dc, "service", service.String()) }