mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-22 21:16:29 +02:00
lower maximums again
This commit is contained in:
parent
9b4f228d01
commit
898d206cf4
1 changed files with 3 additions and 3 deletions
|
@ -55,19 +55,19 @@ const options = {
|
|||
},
|
||||
output_max_size: {
|
||||
desc: 'Max size of each stdio buffer',
|
||||
default: 100240,
|
||||
default: 1024,
|
||||
parser: parseInt,
|
||||
validators: [(x, raw) => !isNaN(x) || `${raw} is not a number`],
|
||||
},
|
||||
max_process_count: {
|
||||
desc: 'Max number of processes per job',
|
||||
default: 100240,
|
||||
default: 64,
|
||||
parser: parseInt,
|
||||
validators: [(x, raw) => !isNaN(x) || `${raw} is not a number`],
|
||||
},
|
||||
max_open_files: {
|
||||
desc: 'Max number of open files per job',
|
||||
default: 100240,
|
||||
default: 2048,
|
||||
parser: parseInt,
|
||||
validators: [(x, raw) => !isNaN(x) || `${raw} is not a number`],
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue