From a9124be38468c3f76c228b3a61fe3fac33670647 Mon Sep 17 00:00:00 2001 From: Maria Matejka Date: Sun, 7 Apr 2024 22:27:13 +0200 Subject: [PATCH] Fixed hostcache notifier pool This pool has to be the service pool to allow the seq bitmaps to grow from the exporter and feeder routines --- nest/rt-table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nest/rt-table.c b/nest/rt-table.c index 1f8634062..0dda2588a 100644 --- a/nest/rt-table.c +++ b/nest/rt-table.c @@ -4736,7 +4736,7 @@ rt_update_hostcache(void *data) hc->req = (struct rt_export_request) { .name = mb_sprintf(tab->rp, "%s.hcu.notifier", tab->name), .list = birdloop_event_list(tab->loop), - .pool = tab->rp, + .pool = birdloop_pool(tab->loop), .trace_routes = tab->config->debug, .dump_req = hc_notify_dump_req, .log_state_change = hc_notify_log_state_change, -- 2.47.2