increased auto compile limits

This commit is contained in:
Henry Oswald 2014-03-04 15:29:45 +00:00
parent 149b51ddc6
commit 67e9d0724d
2 changed files with 4 additions and 4 deletions

View file

@ -57,9 +57,9 @@ module.exports = CompileManager =
return callback(null, true)
opts =
endpointName:"auto_compile"
timeInterval:10
timeInterval:15
subjectName:"everyone"
throttle: 5
throttle: 10
rateLimiter.addCount opts, (err, canCompile)->
if err?
canCompile = false

View file

@ -208,9 +208,9 @@ describe "CompileManager", ->
@ratelimiter.addCount.callsArgWith(1, null, true)
@CompileManager._checkIfAutoCompileLimitHasBeenHit true, (err, canCompile)=>
args = @ratelimiter.addCount.args[0][0]
args.throttle.should.equal 5
args.throttle.should.equal 10
args.subjectName.should.equal "everyone"
args.timeInterval.should.equal 10
args.timeInterval.should.equal 15
args.endpointName.should.equal "auto_compile"
canCompile.should.equal true
done()