1
0
Fork 1

A few more DNSSEC retries

(cherry picked from commit 38763fae04a7dcb47ca21e2448f36159d91546a6)
This commit is contained in:
Stephen Paul Weber 2024-11-05 10:50:19 -05:00 committed by Arne
parent e932fe33e1
commit 4caeeb8754

View file

@ -490,7 +490,7 @@ public class Resolver {
() -> {
final Question question = new Question(dnsName, Record.TYPE.getType(type));
if (!DNSSECLESS_TLDS.contains(dnsName.getLabels()[0].toString())) {
for (int i = 0; i < 3; i++) {
for (int i = 0; i < 5; i++) {
try {
ResolverResult<D> result = DnssecResolverApi.INSTANCE.resolve(question);
if (result.wasSuccessful() && !result.isAuthenticData()) {