Skip to content

Commit

Permalink
remove unused, #219
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Oct 31, 2024
1 parent 8a6618c commit a86d6cc
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions js/config/sparky.pm2.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
*
* Likely to be run as `phet` user on sparky.colorado.edu
*
* Turn off individual processes by setting "enabled" false.
*
* @author Michael Kauzmann (PhET Interactive Simulations)
* @author Jonathan Olson (PhET Interactive Simulations)
* @author Matt Pennington (PhET Interactive Simulations)
Expand All @@ -30,17 +28,15 @@ module.exports = {
interpreter: '/bin/bash',
script: '../perennial/bin/sage',
args: `run js/grunt/tasks/continuous-server.ts --localCount=${CT_MAIN_THREAD_COUNT}`,
time: true,
enabled: true
time: true
},
{
name: 'ctq',
cwd: '/data/share/phet/continuous-testing/ct-quick/aqua',
interpreter: '/bin/bash',
script: '../perennial/bin/sage',
args: 'run js/grunt/tasks/quick-server.ts',
time: true,
enabled: true
time: true
},
{
name: 'ct-chrome-client',
Expand All @@ -52,8 +48,7 @@ module.exports = {
exec_mode: 'cluster',
instances: CHROME_INSTANCES,
merge_logs: true,
time: true,
enabled: true
time: true
},
{
name: 'ct-firefox-client',
Expand All @@ -63,8 +58,7 @@ module.exports = {
exec_mode: 'cluster',
instances: FIREFOX_INSTANCES,
merge_logs: true,
time: true,
enabled: true
time: true
}
]
};

0 comments on commit a86d6cc

Please sign in to comment.