#8709 Nightly test failure in test_integration/test_dns_locations.py::TestDNSLocations::test_adtrust_system_records
Closed: duplicate 3 years ago by frenaud. Opened 3 years ago by mpolovka.

test_integration/test_dns_locations.py::TestDNSLocations::test_adtrust_system_records is failing in [testing_master_previous] Nightly PR #704 with an error:

    def resolve_records_from_server(rname, rtype, nameserver):
        error = None
        res = DNSResolver()
        res.nameservers = [nameserver]
        res.lifetime = 30
        logger.info("Query: %s %s, nameserver %s", rname, rtype, nameserver)
        # lets try to query 3x
        for _i in range(3):
            try:
                ans = res.resolve(rname, rtype)
                logger.info("Answer: %s", ans.rrset)
                return ans.rrset
            except (dns.resolver.NXDOMAIN, dns.resolver.Timeout) as e:
                error = e
                time.sleep(10)

>       pytest.fail("Query: {} {}, nameserver {} failed due to {}".format(
            rname, rtype, nameserver, error))
E       Failed: Query: _ldap._tcp.Default-First-Site-Name._sites.dc._msdcs.ipa.test. SRV, nameserver 192.168.122.251 failed due to The DNS query name does not exist: _ldap._tcp.Default-First-Site-Name._sites.dc._msdcs.ipa.test.

Report, full logs


On the plus side, all fixes from 8496 are passing.

Similar failures observed in PR 738 Logs

[testing_master_previous] is run with 389-ds-base-1.4.3.18-1.fc32.x86_64 which doesn't contain the sync_repl fix (commit https://github.com/389ds/389-ds-base/commit/263a87bc2bb7080e76fd2146be58f87a91478a2c Issue 4526 - sync_repl: when completing an operation in the pending list, it can select the wrong operation):

$ git tag --contains 263a87bc2bb7080e76fd2146be58f87a91478a2c
389-ds-base-1.4.3.19
389-ds-base-1.4.3.20

This issue is a duplicate of https://pagure.io/freeipa/issue/8496

Metadata Update from @frenaud:
- Issue close_status updated to: duplicate
- Issue status updated to: Closed (was: Open)

3 years ago

Login to comment on this ticket.

Metadata