8000 fix: nil pointer in network checker of liqoctl info peer by claudiolor · Pull Request #2797 · liqotech/liqo · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix: nil pointer in network checker of liqoctl info peer #2797

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions pkg/liqoctl/info/peer/network.go
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,10 @@ func (nc *NetworkChecker) collectGatewayInfo(ctx context.Context, cl client.Clie
peerNetwork.Gateway.Port = gwClient.Spec.Endpoint.Port
case gwServer != nil:
peerNetwork.Gateway.Role = GatewayClientType
peerNetwork.Gateway.Address = gwServer.Status.Endpoint.Addresses
peerNetwork.Gateway.Port = gwServer.Status.Endpoint.Port
if gwServer.Status.Endpoint != nil {
peerNetwork.Gateway.Address = gwServer.Status.Endpoint.Addresses
peerNetwork.Gateway.Port = gwServer.Status.Endpoint.Port
}
default:
return fmt.Errorf("no gateways found")
}
Expand Down
Loading
0