Compare commits

...

2 commits

Author SHA1 Message Date
pinglanlu
4188d1ae6e
Merge 58e4a66b42 into edf9e25001 2024-11-22 09:29:18 -05:00
pinglanlu
58e4a66b42 Use a more direct and less error-prone return value
Signed-off-by: pinglanlu <pinglanlu@outlook.com>
2024-11-12 14:22:35 +08:00

View file

@ -637,7 +637,7 @@ func (t *TailscaleInContainer) Netmap() (*netmap.NetworkMap, error) {
return nil, fmt.Errorf("saving netmap to /tmp/control: %w", err)
}
return &nm, err
return &nm, nil
}
// Netmap returns the current Netmap (netmap.NetworkMap) of the Tailscale instance.