Don't ignore local keys from fetchers

This commit is contained in:
Neil Alexander 2020-10-12 09:32:25 +01:00
parent 9096bfcee8
commit e051bf5647
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -224,10 +224,6 @@ func (s *ServerKeyAPI) handleFetcherKeys(
// Now let's look at the results that we got from this fetcher. // Now let's look at the results that we got from this fetcher.
for req, res := range fetcherResults { for req, res := range fetcherResults {
if req.ServerName == s.ServerName {
continue
}
if prev, ok := results[req]; ok { if prev, ok := results[req]; ok {
// We've already got a previous entry for this request // We've already got a previous entry for this request
// so let's see if the newly retrieved one contains a more // so let's see if the newly retrieved one contains a more