]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#1336] added ChangeLog
authorRazvan Becheriu <razvan@isc.org>
Wed, 12 Aug 2020 14:03:12 +0000 (17:03 +0300)
committerRazvan Becheriu <razvan@isc.org>
Thu, 13 Aug 2020 19:40:16 +0000 (22:40 +0300)
ChangeLog
src/lib/dhcpsrv/cfg_subnets6.cc

index 1a3b3bd23666a997efbd817fb144acc9b29001ab..05a4a4adf60e0229a389fe4f91d9a1b580fad303 100644 (file)
--- 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
index 61ec1410bcced51c53e7349389d8d7a24931756c..e21ebd4e3c15afe7d46f07ef4ac3f3524048463b 100644 (file)
@@ -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();
     }
 }