mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-22 21:16:29 +02:00
make maxes really big
This commit is contained in:
parent
6a78aff36f
commit
9b4f228d01
1 changed files with 4 additions and 4 deletions
|
@ -55,25 +55,25 @@ const options = {
|
|||
},
|
||||
output_max_size: {
|
||||
desc: 'Max size of each stdio buffer',
|
||||
default: -1,
|
||||
default: 100240,
|
||||
parser: parseInt,
|
||||
validators: [(x, raw) => !isNaN(x) || `${raw} is not a number`],
|
||||
},
|
||||
max_process_count: {
|
||||
desc: 'Max number of processes per job',
|
||||
default: -1,
|
||||
default: 100240,
|
||||
parser: parseInt,
|
||||
validators: [(x, raw) => !isNaN(x) || `${raw} is not a number`],
|
||||
},
|
||||
max_open_files: {
|
||||
desc: 'Max number of open files per job',
|
||||
default: -1,
|
||||
default: 100240,
|
||||
parser: parseInt,
|
||||
validators: [(x, raw) => !isNaN(x) || `${raw} is not a number`],
|
||||
},
|
||||
max_file_size: {
|
||||
desc: 'Max file size in bytes for a file',
|
||||
default: -1, //10MB
|
||||
default: 10000000, //10MB
|
||||
parser: parseInt,
|
||||
validators: [(x, raw) => !isNaN(x) || `${raw} is not a number`],
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue