Skip to content
Snippets Groups Projects
Commit a47777cc authored by juga's avatar juga
Browse files

Merge branch 'bug28572'

parents 2804f6be 3f74d937
Branches
Tags
No related merge requests found
......@@ -315,9 +315,6 @@ class V3BWLine(object):
kwargs.update(cls.result_types_from_results(results))
# useful args for scaling
if success_results:
if not len(success_results) >= min_num:
# log.debug('The number of results is les than %s', min_num)
return None
results_away = \
cls.results_away_each_other(success_results, secs_away)
if not results_away:
......@@ -327,6 +324,9 @@ class V3BWLine(object):
results_recent = cls.results_recent_than(results_away, secs_recent)
if not results_recent:
return None
if not len(results_recent) >= min_num:
# log.debug('The number of results is less than %s', min_num)
return None
kwargs['desc_bw_avg'] = \
results_recent[-1].relay_average_bandwidth
rtt = cls.rtt_from_results(results_recent)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment