fix(rate-limits): Further slowing down anon freeloaders

This commit is contained in:
Chris Troutner
2022-04-08 07:28:12 -07:00
parent f253211a2f
commit d3cf02122c
+1 -1
View File
@@ -35,7 +35,7 @@ const config = require('../../config')
// The amount of delay in milliseconds to add to anonymous requests, in order
// to slow down freeloaders that are hitting the system too hard.
const ANON_DELAY = 1000
const ANON_DELAY = 3000
let _this // Global pointer to instance of class, when 'this' context is lost.