hotfix(netlink): specify IP family for conntrack calls and make conntrack failure a warning

This commit is contained in:
Quentin McGaw
2026-02-25 02:40:44 +00:00
parent 01487b5caf
commit 034f8f6331
4 changed files with 28 additions and 10 deletions
+1 -1
View File
@@ -239,7 +239,7 @@ func _main(ctx context.Context, buildInfo models.BuildInformation,
}
err = netLinker.FlushConntrack()
if err != nil {
return fmt.Errorf("flushing conntrack: %w", err)
logger.Warnf("flushing conntrack failed: %s", err)
}
}