From 1c1d27196777da878d3d185a5dd7d14ba10d5813 Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Tue, 23 Dec 2025 01:40:29 +0000 Subject: [PATCH] fix(dns): retry on next period the blocklists update after a failed update - Fix #3053 --- internal/dns/ticker.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/dns/ticker.go b/internal/dns/ticker.go index f2f3c146..daf20e0d 100644 --- a/internal/dns/ticker.go +++ b/internal/dns/ticker.go @@ -35,6 +35,8 @@ func (l *Loop) RunRestartTicker(ctx context.Context, done chan<- struct{}) { l.statusManager.SetStatus(constants.Crashed) l.logger.Error(err.Error()) l.logger.Warn("skipping DNS server restart due to failed files update") + settings := l.GetSettings() + timer.Reset(*settings.UpdatePeriod) continue } }