2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-22 18:19:42 +00:00

Add CHANGES and release notes for [GL #4074]

This commit is contained in:
Aram Sargsyan 2023-05-27 11:30:56 +00:00
parent 2ae5c4a674
commit 466a7d9b5f
2 changed files with 13 additions and 1 deletions

View File

@ -1,3 +1,11 @@
6186. [bug] Fix a 'clients-per-query' miscalculation bug. When the
'stale-answer-enable' options was enabled and the
'stale-answer-client-timeout' option was enabled and
larger than 0, named was taking two places from the
'clients-per-query' limit for each client and was
failing to gradually auto-tune its value, as configured.
[GL #4074]
6185. [func] Add "ClientQuota" statistics channel counter, which
indicates the number of the resolver's spilled queries
due to reaching the clients per query quota. [GL !7978]

View File

@ -54,7 +54,11 @@ Feature Changes
Bug Fixes
~~~~~~~~~
- None.
- When the :any:`stale-answer-enable` option was enabled and the
:any:`stale-answer-client-timeout` option was enabled and larger than 0,
``named`` was taking two places from the :any:`clients-per-query` limit for
each client and was failing to gradually auto-tune its value, as configured.
This has been fixed. :gl:`#4074`
- It could happen that after the :any:`stale-answer-client-timeout` duration,
a delegation from cache was returned to the client. This has now been fixed.