This commit is contained in:
parent
74d6f6d488
commit
9e728583c4
@ -18,16 +18,17 @@ module.exports = async (client, apex, app) => {
|
||||
}
|
||||
},
|
||||
requestPart = async uri => {
|
||||
const ac = new AbortController()
|
||||
setTimeout(() => {
|
||||
ac.abort()
|
||||
}, constant.abort_timeout)
|
||||
const ac = new AbortController(),
|
||||
timeout = setTimeout(() => {
|
||||
ac.abort()
|
||||
}, constant.abort_timeout)
|
||||
const response = await fetch(uri, {
|
||||
headers: { 'User-Agent': constant.agent },
|
||||
signal: ac.signal,
|
||||
keepalive: false,
|
||||
timeout: constant.timeout,
|
||||
})
|
||||
clearTimeout(timeout)
|
||||
return await response.json()
|
||||
},
|
||||
scanInstance = async instance => {
|
||||
|
Loading…
Reference in New Issue
Block a user