From fe5ff025f5c5355b9471cc422a976313e261855b Mon Sep 17 00:00:00 2001 From: Pavel 'LEdoian' Turinsky Date: Fri, 30 Sep 2022 07:57:33 +0200 Subject: [PATCH] OSPF provider: quick ugly hack with various metrics This does not really make sense. But I want this to run, fixes will follow :-) --- birdvisu/maps_new/providers.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/birdvisu/maps_new/providers.py b/birdvisu/maps_new/providers.py index 59f15a6..4a55e65 100644 --- a/birdvisu/maps_new/providers.py +++ b/birdvisu/maps_new/providers.py @@ -79,7 +79,8 @@ class OspfDataTopologyProvider(TopologyProvider): net_id = re.match(r'((network|stubnet|external) [^ ]+)', n).group(1) if net_id in self.network_renames: net_id = self.network_renames[net_id] - metric = int(re.search(r'metric ([0-9]+)', n).group(1)) + # FIXME: Hacking metric and metric2 together is a bad idea. + metric = int(re.search(r'metric2? ([0-9]+)', n).group(1)) ident = (r.ident, net_id) # I really hope that one router has at most one link to each network (incl. external) assert ident not in self.topology.links