Skip to content

Commit

Permalink
🚀 Update config settings for throttling and logging
Browse files Browse the repository at this point in the history
- Increased minute throttling limit from 120 to 1200
- Doubled second throttling limit from 60 to 120
- Changed log level from :warn to :info for better visibility
  • Loading branch information
antt1995 committed Feb 13, 2025
1 parent c1ebaa1 commit ce103a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -686,14 +686,14 @@ throttling:
# Default: 120
#
# Environment Variable Override: PWP__THROTTLING__MINUTE='60'
minute: 120
minute: 1200

# ..maximum number of allowed HTTP requests per second
#
# Default: 60
#
# Environment Variable Override: PWP__THROTTLING__SECOND='20'
second: 60
second: 120

### Trusted Proxies
#
Expand Down Expand Up @@ -982,7 +982,7 @@ country_codes:
# Configure the logging verbosity of the application.
#
# Valid values are: :debug, :info, :warn, :error, :fatal
log_level: :warn
log_level: :info

# In containers, it is usually desired to log to stdout
# instead of using log files (e.g. log/production.log).
Expand Down

0 comments on commit ce103a8

Please sign in to comment.