Skip to content

Commit

Permalink
fixup! feat(cli): restrict rollups-node resources
Browse files Browse the repository at this point in the history
  • Loading branch information
endersonmaia committed Aug 21, 2024
1 parent 23da63d commit 9c565b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/cli/src/commands/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,14 @@ export default class Run extends BaseCommand<typeof Run> {
description:
"Define the number of CPUs to use (eg.: 1) for the rollups-node, 0 (zero) means unlimited",
summary: "number of cpu limits for the rollups-node",
default: 4,
default: 0,
min: 0,
}),
memory: Flags.integer({
description:
"Define the amount of memory to use for the rollups-node in MB (eg.: 1024), 0 (zero) means unlimited",
summary: "memory limit for the rollups-node in MB",
default: 4096,
default: 0,
min: 0,
}),
"show-config": Flags.boolean({
Expand Down

0 comments on commit 9c565b3

Please sign in to comment.