Loading sbws/lib/v3bwfile.py +5 −0 Original line number Diff line number Diff line Loading @@ -869,6 +869,7 @@ class V3BWLine(object): for r in reversed(results): if r.relay_average_bandwidth is not None: return r.relay_average_bandwidth log.warning("Descriptor average bandwidth is None.") return None @staticmethod Loading @@ -877,6 +878,7 @@ class V3BWLine(object): for r in reversed(results): if r.relay_burst_bandwidth is not None: return r.relay_burst_bandwidth log.warning("Descriptor burst bandwidth is None.") return None @staticmethod Loading @@ -885,6 +887,7 @@ class V3BWLine(object): for r in reversed(results): if r.consensus_bandwidth is not None: return r.consensus_bandwidth log.warning("Consensus bandwidth is None.") return None @staticmethod Loading @@ -893,6 +896,7 @@ class V3BWLine(object): for r in reversed(results): if r.consensus_bandwidth_is_unmeasured is not None: return r.consensus_bandwidth_is_unmeasured log.warning("Consensus bandwidth is unmeasured is None.") return None @staticmethod Loading @@ -912,6 +916,7 @@ class V3BWLine(object): for r in reversed(results): if r.relay_observed_bandwidth is not None: return r.relay_observed_bandwidth log.warning("Descriptor observed bandwidth is None.") return None @property Loading Loading
sbws/lib/v3bwfile.py +5 −0 Original line number Diff line number Diff line Loading @@ -869,6 +869,7 @@ class V3BWLine(object): for r in reversed(results): if r.relay_average_bandwidth is not None: return r.relay_average_bandwidth log.warning("Descriptor average bandwidth is None.") return None @staticmethod Loading @@ -877,6 +878,7 @@ class V3BWLine(object): for r in reversed(results): if r.relay_burst_bandwidth is not None: return r.relay_burst_bandwidth log.warning("Descriptor burst bandwidth is None.") return None @staticmethod Loading @@ -885,6 +887,7 @@ class V3BWLine(object): for r in reversed(results): if r.consensus_bandwidth is not None: return r.consensus_bandwidth log.warning("Consensus bandwidth is None.") return None @staticmethod Loading @@ -893,6 +896,7 @@ class V3BWLine(object): for r in reversed(results): if r.consensus_bandwidth_is_unmeasured is not None: return r.consensus_bandwidth_is_unmeasured log.warning("Consensus bandwidth is unmeasured is None.") return None @staticmethod Loading @@ -912,6 +916,7 @@ class V3BWLine(object): for r in reversed(results): if r.relay_observed_bandwidth is not None: return r.relay_observed_bandwidth log.warning("Descriptor observed bandwidth is None.") return None @property Loading