Backed out changeset e051d75e66f7 (bug 1610836) for causing connectivity mass test failures.

CLOSED TREE
This commit is contained in:
Arthur Iakab 2020-02-01 02:09:30 +02:00
Родитель 8ce544c4ce
Коммит 57110a989d
2 изменённых файлов: 1 добавлений и 27 удалений

Просмотреть файл

@ -1453,12 +1453,9 @@ nsresult nsHostResolver::NameLookup(nsHostRecord* rec) {
rv = TrrLookup(rec);
}
bool serviceNotReady =
!gTRRService || !gTRRService->Enabled(effectiveRequestMode);
if (effectiveRequestMode == nsIRequest::TRR_DISABLED_MODE ||
(effectiveRequestMode == nsIRequest::TRR_FIRST_MODE &&
(rec->flags & RES_DISABLE_TRR || serviceNotReady) && NS_FAILED(rv))) {
(rec->flags & RES_DISABLE_TRR) && NS_FAILED(rv))) {
if (!rec->IsAddrRecord()) {
return rv;
}

Просмотреть файл

@ -1377,26 +1377,3 @@ add_task(async function test_vpnDetection() {
"changed"
);
});
// confirmationNS set without confirmed NS yet
// checks that we properly fall back to DNS is confirmation is not ready yet
add_task(async function test_resolve_not_confirmed() {
dns.clearCache(true);
Services.prefs.setIntPref("network.trr.mode", 2); // TRR-first
Services.prefs.clearUserPref("network.trr.useGET");
Services.prefs.clearUserPref("network.trr.disable-ECS");
Services.prefs.setCharPref(
"network.trr.uri",
`https://foo.example.com:${h2Port}/doh?responseIP=1::ffff`
);
Services.prefs.setCharPref(
"network.trr.confirmationNS",
"confirm.example.com"
);
let [, , inStatus] = await new DNSListener("example.org", undefined, false);
Assert.ok(
Components.isSuccessCode(inStatus),
`${inStatus} should be a success code`
);
});