Merge pull request #1141 from omnivore-app/fix/content-fetch-timeout

Fix content-fetch timeout issue
This commit is contained in:
Hongbo Wu 2022-08-26 13:41:15 +08:00 committed by GitHub
commit 46fcc6ced1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
});
})();