We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7e8c136 + 1de343b commit e5436c9Copy full SHA for e5436c9
1 file changed
lib/gather/gather-telemetry.js
@@ -1,7 +1,10 @@
1
const puppeteer = require('puppeteer');
2
const { setTelemetry } = require('../utils/telemetry');
3
4
-const DEFAULT_PUPPETEER_ARGS = { ignoreHTTPSErrors: true };
+const DEFAULT_PUPPETEER_ARGS = {
5
+ ignoreHTTPSErrors: true,
6
+ args: ['--no-sandbox', '--disable-setuid-sandbox'],
7
+};
8
9
module.exports = async function gatherTelemetry(url, gatherFn, ...args) {
10
let puppeteerArgs = [...args].pop();
0 commit comments