From 2f21ab937e03ca8fb5d5787dc1bfb5244481247d Mon Sep 17 00:00:00 2001 From: lisa Date: Tue, 16 Mar 2021 12:33:41 -0600 Subject: [PATCH] fqdn beacons were not being removed in chunk rollovers (#621) added beaconsfqdn table to list of modules that the remover cleans up --- pkg/remover/mongodb.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/remover/mongodb.go b/pkg/remover/mongodb.go index b9db11b0..d15e0eb9 100644 --- a/pkg/remover/mongodb.go +++ b/pkg/remover/mongodb.go @@ -93,6 +93,7 @@ func (r *remover) removeOutdatedCIDs(cid int) error { // documents due to to the special case in how that data is updated and stored. modules := []string{ r.res.Config.T.Beacon.BeaconTable, + r.res.Config.T.BeaconFQDN.BeaconFQDNTable, r.res.Config.T.Structure.HostTable, r.res.Config.T.Structure.UniqueConnTable, r.res.Config.T.DNS.ExplodedDNSTable,