We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e2a2fd commit c7bea9bCopy full SHA for c7bea9b
pkg/appgw/istio_pools.go
@@ -26,7 +26,7 @@ func (c *appGwConfigBuilder) getIstioBackendAddressPool(destinationID istioDesti
26
if _, portExists := getUniqueTCPPorts(subset)[serviceBackendPair.BackendPort]; portExists {
27
backendServicePort := ""
28
if destinationID.Destination.Port.Number != 0 {
29
- backendServicePort = string(destinationID.Destination.Port.Number)
+ backendServicePort = fmt.Sprint(destinationID.Destination.Port.Number)
30
} else {
31
backendServicePort = destinationID.Destination.Port.Name
32
}
0 commit comments