NOTIFY delayed 1s after DDNS or XFR.
1 unresolved thread
1 unresolved thread
This does not big harm on not-frequently updated zones, NOTIFY is simply delayed. This helps on frequently updated (DDNS or [AI]XFR) zones - NOTIFY is not sent more often than once a second.
Merge request reports
Activity
Filter activity
mentioned in commit 25f345e8
918 918 /* Rechedule events. */ 919 919 replan_from_timers(conf, zone); 920 920 if (updated) { 921 zone_events_schedule_now(zone, ZONE_EVENT_NOTIFY); 921 zone_events_schedule_at(zone, ZONE_EVENT_NOTIFY, time(NULL) + 1); @lpeltan I don't think this will work as you expect. Do you want this?
zone_events_schedule_at(zone, ZONE_EVENT_NOTIFY, 0, ZONE_EVENT_NOTIFY, time(NULL) + 1);