mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
increase navigation timeout to 30 seconds
This commit is contained in:
parent
c18217e697
commit
44e4e080dd
1 changed files with 1 additions and 1 deletions
|
|
@ -482,7 +482,7 @@ async function retrievePage(url, logRecord, functionStartTime) {
|
|||
});
|
||||
|
||||
try {
|
||||
const response = await page.goto(url, { timeout: 8 * 1000, waitUntil: ['networkidle2'] });
|
||||
const response = await page.goto(url, { timeout: 30 * 1000, waitUntil: ['networkidle2'] });
|
||||
const finalUrl = response.url();
|
||||
const contentType = response.headers()['content-type'];
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue