test: Disable CNAME lookup caching
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
cb40a0689b
commit
be42e60731
@ -1,7 +1,6 @@
|
|||||||
package dns
|
package dns
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
|
||||||
"net"
|
"net"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
@ -59,10 +58,6 @@ func LookupRepoTXT(domain string) (string, error) {
|
|||||||
func LookupCNAME(domain string) (string, error) {
|
func LookupCNAME(domain string) (string, error) {
|
||||||
cname, found := cnameCache.Get(domain)
|
cname, found := cnameCache.Get(domain)
|
||||||
if found {
|
if found {
|
||||||
if cname == "" {
|
|
||||||
return "", errors.New("Previous request failure")
|
|
||||||
}
|
|
||||||
|
|
||||||
return cname.(string), nil
|
return cname.(string), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -72,6 +67,5 @@ func LookupCNAME(domain string) (string, error) {
|
|||||||
return cname.(string), nil
|
return cname.(string), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
cnameCache.Set(domain, "", cache.DefaultExpiration)
|
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user