We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d376367 commit b2e9f86Copy full SHA for b2e9f86
1 file changed
lib/gather/gather-single-telemetry.js
@@ -1,7 +1,10 @@
1
const puppeteer = require('puppeteer');
2
const { setTelemetryWithKey } = 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 gatherSingleTelemetry(url, options = {}, gatherFn, ...args) {
10
const browser = await puppeteer.launch(DEFAULT_PUPPETEER_ARGS);
0 commit comments