From 5ef9d83a497b0e2597b95ac0e44a66b3689e2eea Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sun, 21 Mar 2021 16:40:00 +0530 Subject: [PATCH] BlockListZoneManager: removed Flush() call in LoadBlockLists() before loading new data. --- DnsServerCore/Dns/ZoneManagers/BlockListZoneManager.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/DnsServerCore/Dns/ZoneManagers/BlockListZoneManager.cs b/DnsServerCore/Dns/ZoneManagers/BlockListZoneManager.cs index 160f15a7..ea9d172c 100644 --- a/DnsServerCore/Dns/ZoneManagers/BlockListZoneManager.cs +++ b/DnsServerCore/Dns/ZoneManagers/BlockListZoneManager.cs @@ -1,6 +1,6 @@ /* Technitium DNS Server -Copyright (C) 2020 Shreyas Zare (shreyas@technitium.com) +Copyright (C) 2021 Shreyas Zare (shreyas@technitium.com) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -225,8 +225,6 @@ namespace DnsServerCore.Dns.ZoneManagers public void LoadBlockLists() { - Flush(); - //read all block lists in a queue Dictionary> blockListQueues = new Dictionary>(_blockListUrls.Count); int totalDomains = 0;