mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-03-22 10:55:19 -04:00
Raising hard execution limit from one million to three million statements.
This commit is contained in:
parent
383e64d6dc
commit
04ccb2273f
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ module.exports.createAetherOptions = (options) ->
|
|||
aether_MissingThis: {level: 'error'}
|
||||
problemContext: options.problemContext
|
||||
#functionParameters: # TODOOOOO
|
||||
executionLimit: 1 * 1000 * 1000
|
||||
executionLimit: 3 * 1000 * 1000
|
||||
language: options.codeLanguage
|
||||
parameters = functionParameters[options.functionName]
|
||||
unless parameters
|
||||
|
|
Loading…
Reference in a new issue