Skip to content

Commit

Permalink
build: increment spawn timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed May 19, 2021
1 parent 892db93 commit c597684
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/browserless/src/driver.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const spawn = ({
...launchOpts
} = {}) => {
const args = launchOpts.args ? undefined : getArgs({ proxy: launchOpts.proxy })
return puppeteer[mode]({ ignoreHTTPSErrors: true, timeout: 5000, args, ...launchOpts })
return puppeteer[mode]({ ignoreHTTPSErrors: true, timeout: 10000, args, ...launchOpts })
}

const getPid = childProcess => {
Expand Down

0 comments on commit c597684

Please sign in to comment.