summaryrefslogtreecommitdiffstats
path: root/mirrors/utils.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-12-11 19:43:24 -0600
committerDan McGee <dan@archlinux.org>2011-12-11 19:43:24 -0600
commite65d2bc6db279240a03fece91e5332f8602859dc (patch)
treed9afbbb51fe769ebeaa3f8268f7aeaff4cab696d /mirrors/utils.py
parent8228295584bd98dc4695f4496af8d516f7fdf463 (diff)
downloadarchweb-e65d2bc6db279240a03fece91e5332f8602859dc.tar.gz
archweb-e65d2bc6db279240a03fece91e5332f8602859dc.zip
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/utils.py')
-rw-r--r--mirrors/utils.py3
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