fix(utils): panic on ping logic

This commit is contained in:
nullcat
2026-05-29 14:31:32 +08:00
parent f97540b8d0
commit 4dde0942ce
+1
View File
@@ -121,6 +121,7 @@ func peerConnectivityLogic(ctx context.Context, lc *local.Client, relativePeers
peerInfo, err := lc.WhoIs(ctx, peer.String()) peerInfo, err := lc.WhoIs(ctx, peer.String())
if err != nil { if err != nil {
loLog.Warn("failed to get peer info", "err", err) loLog.Warn("failed to get peer info", "err", err)
continue
} else { } else {
loLog = loLog.With("name", peerInfo.Node.ComputedName) loLog = loLog.With("name", peerInfo.Node.ComputedName)
} }