Skip to content

Commit

Permalink
use /dev/shm instead of /tmp, #145
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Jun 3, 2022
1 parent 6454507 commit e302126
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions js/server/puppeteerCTClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ process.on( 'SIGINT', () => process.exit() );

launchOptions: {

// With this flag, temp files are written to /tmp/ on bayes, which caused https://github.com/phetsims/aqua/issues/145
// /dev/shm/ is much bigger
ignoreDefaultArgs: [ '--disable-dev-shm-usage' ],

// Command line arguments passed to the chrome instance,
args: [
'--enable-precise-memory-info',
Expand Down

0 comments on commit e302126

Please sign in to comment.