Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ program
console.log();
console.log(' Use the optional --profile <profile> to set the resource allocation for the sandbox, "medium"');
console.log(' is the default. Be careful, more powerful profiles consume more credits. Supported values');
console.log(' are: medium, large, xlarge.');
console.log(' are: medium, large, xlarge, xxlarge.');
console.log();
console.log(' You can force the command to wait until the creation of the sandbox has been finished and the');
console.log(' sandbox is available to use (in "started" status) by using the --sync flag. By default the');
Expand Down
2 changes: 1 addition & 1 deletion lib/sandbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const SANDBOX_STATUS_UP_AND_RUNNING = 'started';
const SANDBOX_STATUS_DOWN = 'stopped';
const SANDBOX_STATUS_FAILED = 'failed';
const BM_PATH = '/on/demandware.store/Sites-Site';
const SANDBOX_RESOURCE_PROFILES = [ 'medium', 'large', 'xlarge' ];
const SANDBOX_RESOURCE_PROFILES = [ 'medium', 'large', 'xlarge', 'xxlarge' ];

// enable request debugging
if ( process.env.DEBUG ) {
Expand Down