Cleanup hosts map
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Tyler 2022-08-18 23:43:58 -04:00
parent d22b87da10
commit 8a4d02c6e2
1 changed files with 6 additions and 2 deletions

View File

@ -167,6 +167,8 @@ func (r *Redirector) reloadServers() error {
hosts := make(map[string]bool)
var hostsLock sync.Mutex
for _, server := range r.config.ServerList {
wg.Add(1)
@ -186,8 +188,6 @@ func (r *Redirector) reloadServers() error {
return err
}
hosts[u.Host] = true
i := -1
if v, exists := existing[u.Host]; exists {
@ -204,6 +204,10 @@ func (r *Redirector) reloadServers() error {
return
}
hostsLock.Lock()
hosts[u.Host] = true
hostsLock.Unlock()
if _, ok := existing[u.Host]; ok {
s.Redirects = r.servers[i].Redirects