mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
It seems to have some issue with disabling puppeteer timeout by setting it to 0.
So I set the timeout to 2 minutes which should be enough and it works in my local env
This commit is contained in:
parent
8b46997b4a
commit
e52013ccb1
1 changed files with 1 additions and 1 deletions
|
|
@ -110,7 +110,7 @@ const getBrowserPromise = (async () => {
|
|||
defaultViewport: { height: 1080, width: 1920 },
|
||||
executablePath: process.env.CHROMIUM_PATH ,
|
||||
headless: !!process.env.LAUNCH_HEADLESS,
|
||||
timeout: 0,
|
||||
timeout: 120000, // 2 minutes
|
||||
});
|
||||
})();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue