Skip to content

Commit

Permalink
add no-zygote to API generation puppeteer instance, #150
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed May 1, 2023
1 parent 73cb012 commit f5fb16b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/server/QuickServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class QuickServer {
// To prevent filling up `/tmp`, see https://github.com/phetsims/aqua/issues/145
`--user-data-dir=${process.cwd()}/../tmp/puppeteerUserData/`,

// Fork child processes directly to prevent orphaned chrome instances from lingering on bayes, https://github.com/phetsims/aqua/issues/150#issuecomment-1170140994
// Fork child processes directly to prevent orphaned chrome instances from lingering on sparky, https://github.com/phetsims/aqua/issues/150#issuecomment-1170140994
'--no-zygote',
'--no-sandbox'
]
Expand Down
2 changes: 1 addition & 1 deletion js/server/puppeteerCTClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ process.on( 'SIGINT', () => process.exit() );
// To prevent filling up `/tmp`, see https://github.com/phetsims/aqua/issues/145
`--user-data-dir=${process.cwd()}/../tmp/puppeteerUserData/`,

// Fork child processes directly to prevent orphaned chrome instances from lingering on bayes, https://github.com/phetsims/aqua/issues/150#issuecomment-1170140994
// Fork child processes directly to prevent orphaned chrome instances from lingering on sparky, https://github.com/phetsims/aqua/issues/150#issuecomment-1170140994
'--no-zygote',
'--no-sandbox'
]
Expand Down

0 comments on commit f5fb16b

Please sign in to comment.