summaryrefslogtreecommitdiffstats
path: root/mirrors/utils.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-11-10 18:09:19 -0600
committerDan McGee <dan@archlinux.org>2011-11-10 18:09:19 -0600
commitd80f4236d01f70380f71a46dd98f1f789d91d31c (patch)
tree73569e893400eb68b98bc97b513d9da36338bbbe /mirrors/utils.py
parent886630dd4e65a7be6d1bd3d8a0e70ab24e5affc6 (diff)
downloadarchweb-d80f4236d01f70380f71a46dd98f1f789d91d31c.tar.gz
archweb-d80f4236d01f70380f71a46dd98f1f789d91d31c.zip
Add package signoffs JSON view
This allows access to the same data (and even a bit more) from the signoffs overview page in a machine-friendly way. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'mirrors/utils.py')
-rw-r--r--mirrors/utils.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/mirrors/utils.py b/mirrors/utils.py
index 686ec581..8518b3ba 100644
--- a/mirrors/utils.py
+++ b/mirrors/utils.py
@@ -40,7 +40,8 @@ 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=StdDev('logs__duration')
+ duration_stddev=Max('logs__duration')
).order_by('-last_sync', '-duration_avg')
# The Django ORM makes it really hard to get actual average delay in the