From e65d2bc6db279240a03fece91e5332f8602859dc Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Sun, 11 Dec 2011 19:43:24 -0600 Subject: Switch back to using standard deviation in mirror check page This got checked in by default, whoops. Signed-off-by: Dan McGee --- mirrors/utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'mirrors/utils.py') diff --git a/mirrors/utils.py b/mirrors/utils.py index 8518b3b..686ec58 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 -- cgit v1.2.3-24-g4f1b