I try to set request timeout to my function but it not working.
Here how I set timeout in my function.
app.post('upload', async (req, res) => {
req.setTimeout(300000) // 5 minutes timeout
...
})
But the request still timeout on 2 minutes by default.