summaryrefslogtreecommitdiffhomepage
path: root/table/table_manager.go
diff options
context:
space:
mode:
Diffstat (limited to 'table/table_manager.go')
-rw-r--r--table/table_manager.go17
1 files changed, 14 insertions, 3 deletions
diff --git a/table/table_manager.go b/table/table_manager.go
index 8eeff459..a40e1221 100644
--- a/table/table_manager.go
+++ b/table/table_manager.go
@@ -221,17 +221,28 @@ func (manager *TableManager) calculate(ids []string, destinations []*Destination
withdrawn := make([]*Path, 0, len(destinations))
best := make(map[string][]*Path, len(ids))
- for _, destination := range destinations {
+ emptyDsts := make([]*Destination, 0, len(destinations))
+
+ for _, dst := range destinations {
log.WithFields(log.Fields{
"Topic": "table",
- "Key": destination.GetNlri().String(),
+ "Key": dst.GetNlri().String(),
}).Debug("Processing destination")
- paths, n, w := destination.Calculate(ids)
+ paths, n, w := dst.Calculate(ids)
for id, path := range paths {
best[id] = append(best[id], path)
}
newly = append(newly, n...)
withdrawn = append(withdrawn, w...)
+
+ if len(dst.knownPathList) == 0 {
+ emptyDsts = append(emptyDsts, dst)
+ }
+ }
+
+ for _, dst := range emptyDsts {
+ t := manager.Tables[dst.Family()]
+ t.deleteDest(dst)
}
return best, newly, withdrawn
}