Changed default valid status config

This commit is contained in:
freearhey 2019-08-19 03:31:55 +03:00
parent 2a2f73e2d0
commit 39f3bf1f62
1 changed files with 4 additions and 1 deletions

View File

@ -19,7 +19,10 @@ const instance = axios.create({
timeout: config.timeout, timeout: config.timeout,
httpsAgent: new https.Agent({ httpsAgent: new https.Agent({
rejectUnauthorized: false rejectUnauthorized: false
}) }),
validateStatus: function (status) {
return status >= 200 && status < 404
}
}) })
async function test() { async function test() {