mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-21 23:43:27 +01:00
Fix #132: ICMP doesn't work on Mac OS
This commit is contained in:
parent
acb6757dc8
commit
43150ae484
@ -7,6 +7,7 @@ import (
|
|||||||
"net"
|
"net"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/smtp"
|
"net/smtp"
|
||||||
|
"runtime"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -107,7 +108,9 @@ func Ping(address string) (bool, time.Duration) {
|
|||||||
}
|
}
|
||||||
pinger.Count = 1
|
pinger.Count = 1
|
||||||
pinger.Timeout = pingTimeout
|
pinger.Timeout = pingTimeout
|
||||||
pinger.SetPrivileged(true)
|
// Set the pinger's privileged mode to true for every operating system except darwin
|
||||||
|
// https://github.com/TwinProduction/gatus/issues/132
|
||||||
|
pinger.SetPrivileged(runtime.GOOS != "darwin")
|
||||||
err = pinger.Run()
|
err = pinger.Run()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return false, 0
|
return false, 0
|
||||||
|
Loading…
Reference in New Issue
Block a user