Merge: - filters: start DNS server after filters are updated

Close #886

* commit '1b45dc45fc4e610689afc4e618e45ed946f02646':
  - filters: start DNS server after filters are updated
This commit is contained in:
Simon Zolin 2019-07-16 14:41:23 +03:00
commit 55a4536997
1 changed files with 10 additions and 3 deletions

View File

@ -215,11 +215,18 @@ func refreshFiltersIfNecessary(force bool) int {
}
uf.LastUpdated = time.Now()
updateFlags = append(updateFlags, updated)
if updated {
updateCount++
}
}
isRunning := isRunning()
stopped := false
if updateCount != 0 {
_ = dnsServer.Stop()
stopped = true
}
updateCount = 0
for i := range updateFilters {
uf := &updateFilters[i]
updated := updateFlags[i]
@ -259,7 +266,7 @@ func refreshFiltersIfNecessary(force bool) int {
config.Unlock()
}
if updateCount > 0 && isRunning {
if stopped {
err := reconfigureDNSServer()
if err != nil {
log.Error("cannot reconfigure DNS server with the new filters: %s", err)