From: Razvan Becheriu Date: Wed, 12 Aug 2020 14:03:12 +0000 (+0300) Subject: [#1336] added ChangeLog X-Git-Tag: Kea-1.8.0~65 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=87803b4a676378da59dce06c67f4297d12426099;p=thirdparty%2Fkea.git [#1336] added ChangeLog --- diff --git a/ChangeLog b/ChangeLog index 1a3b3bd236..05a4a4adf6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,16 @@ +1787. [bug] razvan + The recount leases functions consider leases in 'declined' state as + 'assigned' so that when the lease is reclaimed or reused, no negative + counters are generated. The 'subnet[X].reclaimed-leases' and + 'reclaimed-leases' are now cumulative counters and are never + decremented or reset until server restart. Removed references to non + existent 'declined-reclaimed-addresses' counters. + (Gitlab #1336) + +1786. [bug] razvan + Update lease stats when using commands from lease-cmds hook. + (Gitlab #1065) + 1785. [func] fdupont If enabled, the default value for queue capacity in congestion control has been trimmed down from 500 to 64. The feature continues to be disabled diff --git a/src/lib/dhcpsrv/cfg_subnets6.cc b/src/lib/dhcpsrv/cfg_subnets6.cc index 61ec1410bc..e21ebd4e3c 100644 --- a/src/lib/dhcpsrv/cfg_subnets6.cc +++ b/src/lib/dhcpsrv/cfg_subnets6.cc @@ -452,7 +452,7 @@ CfgSubnets6::updateStatistics() { // Only recount the stats if we have subnets. if (subnets_.begin() != subnets_.end()) { - LeaseMgrFactory::instance().recountLeaseStats6(); + LeaseMgrFactory::instance().recountLeaseStats6(); } }