Skip to content

Commit 088c586

Browse files
.
1 parent 8176411 commit 088c586

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

azure-ipam/ipconfig/ipconfig.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
)
1414

1515
const (
16-
defaultV6Gateway = "fe80::1234:5678:9abc"
16+
defaultV6Gateway = "fe80::1234:5678:9abc"
1717
)
1818

1919
func CreateOrchestratorContext(args *cniSkel.CmdArgs) ([]byte, error) {
@@ -95,7 +95,8 @@ func ProcessIPConfigsResp(resp *cns.IPConfigsResponse) (*[]netip.Prefix, *[]net.
9595

9696
gatewayIP = net.ParseIP(gatewayStr)
9797
if gatewayIP == nil {
98-
return nil, nil, errors.Errorf("failed to parse gateway IP %q for pod ip %s", gatewayStr, resp.PodIPInfo[i].PodIPConfig.IPAddress)
98+
// errors.Errorf("failed to parse gateway IP %q for pod ip %s", gatewayStr, resp.PodIPInfo[i].PodIPConfig.IPAddress)
99+
return nil, nil, nil
99100
}
100101
gatewaysIPs[i] = gatewayIP
101102
}

0 commit comments

Comments
 (0)