mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
4715. [bug] TreeMemMax was mis-identified as a second HeapMemMax
in the Json cache statistics. [RT #45980]
This commit is contained in:
parent
c75e9c7630
commit
0a1359034d
2 changed files with 4 additions and 1 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
4715. [bug] TreeMemMax was mis-identified as a second HeapMemMax
|
||||
in the Json cache statistics. [RT #45980]
|
||||
|
||||
4714. [port] openbsd/libressl: add support for building with
|
||||
--enable-openssl-hash. [RT #45982]
|
||||
|
||||
|
|
|
|||
|
|
@ -1581,7 +1581,7 @@ dns_cache_renderjson(dns_cache_t *cache, json_object *cstats) {
|
|||
|
||||
obj = json_object_new_int64(isc_mem_maxinuse(cache->mctx));
|
||||
CHECKMEM(obj);
|
||||
json_object_object_add(cstats, "HeapMemMax", obj);
|
||||
json_object_object_add(cstats, "TreeMemMax", obj);
|
||||
|
||||
obj = json_object_new_int64(isc_mem_total(cache->hmctx));
|
||||
CHECKMEM(obj);
|
||||
|
|
|
|||
Loading…
Reference in a new issue