mirror of
https://github.com/gravitl/netmaker.git
synced 2025-02-28 01:52:58 +08:00
fix error messages
This commit is contained in:
parent
6f0950792f
commit
44ee0e2e8a
1 changed files with 2 additions and 2 deletions
|
@ -502,7 +502,7 @@ func Checkin(ctx context.Context, cfg *config.ClientConfig, network string) {
|
|||
}
|
||||
}
|
||||
if err := pingServer(cfg); err != nil {
|
||||
ncutils.PrintLog("could not ping server"+err.Error(), 0)
|
||||
ncutils.PrintLog("could not ping server "+err.Error(), 0)
|
||||
}
|
||||
Hello(cfg, network)
|
||||
// ncutils.Log("Checkin complete")
|
||||
|
@ -604,7 +604,7 @@ func pingServer(cfg *config.ClientConfig) error {
|
|||
pinger.Timeout = 2 * time.Second
|
||||
pinger.Run()
|
||||
stats := pinger.Statistics()
|
||||
if stats.PacketLoss != 100 {
|
||||
if stats.PacketLoss == 100 {
|
||||
ncutils.PrintLog(fmt.Sprintf("lost packets when pinging server: packets sent:%d packets recieved: %d", stats.PacketsSent, stats.PacketsRecv), 1)
|
||||
return errors.New("ping error")
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue