diff options
author | Dan McGee <dan@archlinux.org> | 2011-12-11 19:43:24 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-12-11 19:43:24 -0600 |
commit | e65d2bc6db279240a03fece91e5332f8602859dc (patch) | |
tree | d9afbbb51fe769ebeaa3f8268f7aeaff4cab696d /mirrors | |
parent | 8228295584bd98dc4695f4496af8d516f7fdf463 (diff) |
Switch back to using standard deviation in mirror check page
This got checked in by default, whoops.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'mirrors')
-rw-r--r-- | mirrors/utils.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mirrors/utils.py b/mirrors/utils.py index 8518b3ba..686ec581 100644 --- a/mirrors/utils.py +++ b/mirrors/utils.py @@ -40,8 +40,7 @@ def get_mirror_statuses(cutoff=default_cutoff): last_sync=Max('logs__last_sync'), last_check=Max('logs__check_time'), duration_avg=Avg('logs__duration'), - #duration_stddev=StdDev('logs__duration') - duration_stddev=Max('logs__duration') + duration_stddev=StdDev('logs__duration') ).order_by('-last_sync', '-duration_avg') # The Django ORM makes it really hard to get actual average delay in the |