Skip to content

Commit

Permalink
daemon/defer: disable by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukáš Ondráček committed Jan 13, 2025
1 parent ef655fc commit cbfd818
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/user/config-defer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ The detailed configuration is printed by ``defer`` group on ``info`` level on st

.. option:: defer/enabled: true|false

:default: true
:default: false

Enable request prioritization.

Expand Down
2 changes: 1 addition & 1 deletion python/knot_resolver/datamodel/defer_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ class DeferSchema(ConfigSchema):
log_period: Minimal time between two log messages, or '0s' to disable.
"""

enabled: bool = True
enabled: bool = False
log_period: TimeUnit = TimeUnit("0s")

0 comments on commit cbfd818

Please sign in to comment.