0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-09-19 11:55:21 +00:00
This commit is contained in:
Igor Putovny 2024-06-19 15:33:05 +02:00
parent 1e739986c2
commit 1a33e79f22

View File

@ -1322,16 +1322,14 @@ aggregator_rt_notify(struct proto *P, struct channel *src_ch, net *net, rte *new
assert(p->root == NULL);
/*
* Don't kick settle timer during first run. That would cause
* repeated calls to rt_notify() without any new updates.
* Don't kick settle timer during initial feed. That would cause
* cyclic calls to rt_notify() without receiving any new updates.
*/
if (!p->first_run)
{
log("rt notify: kick");
settle_kick(&p->notify_settle);
}
return;
}
/* Find the objects for the old route */
@ -1584,7 +1582,7 @@ trie_init(struct aggregator_proto *p)
{
/*
* Hash tables are initialized in aggregator_start() before the first run.
* They are initialized here for subsequent runs.
* They are initialized here for all subsequent runs.
*/
if (!p->first_run)
{