From 65c928dd628a2888b734de30bf4af2e6b624d1eb Mon Sep 17 00:00:00 2001 From: Philippe Pittoli Date: Thu, 29 Jun 2023 08:41:35 +0200 Subject: [PATCH] Fix a wrong comment. --- src/storage/zone.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/zone.cr b/src/storage/zone.cr index 4363603..29f125d 100644 --- a/src/storage/zone.cr +++ b/src/storage/zone.cr @@ -68,7 +68,7 @@ class DNSManager::Storage::Zone property refresh : UInt64 = 86400 # #seconds before requesting new zone version (master-slave). property retry : UInt64 = 7200 # #seconds before retry accessing new data from the master. property expire : UInt64 = 3600000 # #seconds slaves should consider master dead. - property minttl : UInt64 = 600 # #seconds slaves should consider master dead. + property minttl : UInt64 = 600 # #seconds cache lifetime for answers about inexistent records. def initialize(@name, @ttl, @mname, @rname, @serial = 0.to_u64,