Update local use timeout from 15 to 60 seconds

This commit is contained in:
Hayk Martiros 2022-12-18 22:18:38 -08:00 committed by GitHub
parent 269dd4831b
commit 2c163cae9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ export default async function handler(req, res) {
method: "POST",
headers: headers,
body: req.body,
signal: AbortSignal.timeout(15000),
signal: AbortSignal.timeout(60000),
});
const data = await response.json();