Commit 46ced3f66c for bind

commit 46ced3f66cb317866bdf89445a96a8f7812e889f
Merge: 16fc9b1475 c4ea7e569f
Author: Nicki Křížek <nicki@isc.org>
Date:   Mon Sep 21 14:55:58 2026 +0200

    fix: test: Wait for the zone reload to finish in the cdnxdomain test

    "rndc reload" only schedules zone reloads, and named logs "all zones
    loaded" (which NamedInstance.reload() waits for) as soon as every
    zone's load has been started. A zone that already has a database is
    re-read asynchronously and the new database is swapped in afterwards,
    so the direct query to ns2 could still be answered from the previous
    zone contents and the test failed intermittently.

    Wait for the zone's "loaded serial" log line, which is emitted after
    the database swap, before querying.

    Assisted-by: Claude:claude-fable-5-1

    Merge branch 'nicki/cdnxdomain-wait-for-zone-reload' into 'main'

    See merge request isc-projects/bind9!12798