We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 027eb41 + 30f7631 commit 1d46882Copy full SHA for 1d46882
appengine/headless-chrome/app.js
@@ -29,7 +29,7 @@ app.use(async (req, res) => {
29
30
// [START browser]
31
const browser = await puppeteer.launch({
32
- args: ['--no-sandbox', '--disable-setuid-sandbox']
+ args: ['--no-sandbox']
33
});
34
// [END browser]
35
const page = await browser.newPage();
appengine/redis/server.js
@@ -39,8 +39,6 @@ const client = redis.createClient(
39
40
// Create a simple little server.
41
http.createServer((req, res) => {
42
- client.on('error', (err) => console.log('Error', err));
43
-
44
// Track every IP that has visited this site
45
const listName = 'IPs';
46
client.lpush(listName, req.connection.remoteAddress);
0 commit comments