fix(rate limits): Increasing rate limits for internal calls

This commit is contained in:
Chris Troutner
2020-09-28 19:49:49 -07:00
parent f4f5f02a2f
commit 10eb4da112
+1 -1
View File
@@ -137,7 +137,7 @@ class RateLimits {
// Apply paid-access rate limits based on key/IP
if (key.toString().indexOf('172.17.') > -1) {
pointsToConsume = 1
pointsToConsume = 0.1
res.locals.pointsToConsume = pointsToConsume // Feedback for tests.
}