From 583ae506d261b169a0ca79856fcd7ca5cc8b986d Mon Sep 17 00:00:00 2001 From: AliveDevil Date: Sun, 26 Nov 2023 01:52:30 +0100 Subject: [PATCH] Comments --- src/pdns-dhcp/Kea/KeaLeaseWatcher.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pdns-dhcp/Kea/KeaLeaseWatcher.cs b/src/pdns-dhcp/Kea/KeaLeaseWatcher.cs index 3c708bf..cd01ec4 100644 --- a/src/pdns-dhcp/Kea/KeaLeaseWatcher.cs +++ b/src/pdns-dhcp/Kea/KeaLeaseWatcher.cs @@ -92,9 +92,9 @@ public abstract class KeaDhcpLeaseWatcher : IHostedService { await foreach (var @event in _eventChannel.Reader.ReadAllAsync(loopToken)) { - // Guard for Deleted-events and moved-away events, + // Guard for Deleted and renamed away events, // both have to stop this reader immediately. - // Just wait for the file being created/moved to _leaseFile. + // Just wait for the file being created/renamed to _leaseFile. // Described in [The LFC Process](https://kea.readthedocs.io/en/latest/arm/lfc.html#kea-lfc) switch (@event) {