Skip to content

Commit

Permalink
Reduce some limits slightly
Browse files Browse the repository at this point in the history
  • Loading branch information
RickCarlino committed Nov 1, 2019
1 parent 8555acf commit 87e271c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions app/lib/log_service.rb
Expand Up @@ -2,9 +2,7 @@
# Listens to *ALL* incoming logs and stores them to the DB.
# Also handles throttling.
class LogService < AbstractServiceRunner
THROTTLE_POLICY = ThrottlePolicy.new(name, min: 250,
hour: 5_000,
day: 50_000)
THROTTLE_POLICY = ThrottlePolicy.new(name, min: 250, hour: 5_000, day: 25_000)

LOG_TPL = Rails.env.test? ?
"\e[32m.\e[0m" : "FBOS LOG (device_%s): %s\n"
Expand Down

0 comments on commit 87e271c

Please sign in to comment.