Fix timeout
This commit is contained in:
parent
7d92351568
commit
0b959514f8
|
@ -103,7 +103,7 @@ exports.pingAsync = function (hostname, ipv6 = false) {
|
||||||
ping.promise.probe(hostname, {
|
ping.promise.probe(hostname, {
|
||||||
v6: ipv6,
|
v6: ipv6,
|
||||||
min_reply: 1,
|
min_reply: 1,
|
||||||
timeout: 10000,
|
timeout: 10,
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
// If ping failed, it will set field to unknown
|
// If ping failed, it will set field to unknown
|
||||||
if (res.alive) {
|
if (res.alive) {
|
||||||
|
|
Loading…
Reference in New Issue