Compare commits

...

1 Commits

Author SHA1 Message Date
Michał Kępień
933ebc9f64 Revert "Merge branch..."
This reverts merge request !8123
2023-07-24 08:59:08 +00:00
2 changed files with 0 additions and 13 deletions

View File

@@ -1,6 +1,3 @@
6213. [bug] Mark a primary server as temporarily unreachable if the
TCP connection attempt times out. [GL #4215]
6212. [bug] Don't process detach and close netmgr events when
the netmgr has been paused. [GL #4200]

View File

@@ -1520,22 +1520,12 @@ failure:
static void
xfrin_timeout(isc_task_t *task, isc_event_t *event) {
dns_xfrin_ctx_t *xfr = (dns_xfrin_ctx_t *)event->ev_arg;
dns_zonemgr_t *zmgr = NULL;
REQUIRE(VALID_XFRIN(xfr));
UNUSED(task);
isc_event_free(&event);
zmgr = dns_zone_getmgr(xfr->zone);
if (zmgr != NULL) {
isc_time_t now;
TIME_NOW(&now);
dns_zonemgr_unreachableadd(zmgr, &xfr->masteraddr,
&xfr->sourceaddr, &now);
}
/*
* This will log "giving up: timeout".
*/