Increase maxContentLength
This commit is contained in:
parent
3bddbd2c70
commit
087a00297b
|
@ -17,7 +17,10 @@ program
|
|||
|
||||
const config = program.opts()
|
||||
|
||||
const instance = axios.create({ timeout: config.timeout, maxContentLength: 1000 })
|
||||
const instance = axios.create({
|
||||
timeout: config.timeout,
|
||||
maxContentLength: 5000
|
||||
})
|
||||
|
||||
let globalBuffer = []
|
||||
let bar
|
||||
|
|
Loading…
Reference in New Issue