summaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2013-02-10 12:45:24 -0600
committerDan McGee <dan@archlinux.org>2013-02-10 12:45:24 -0600
commit5bc85244281efc916132c86046018d0ebe70b5e9 (patch)
treee905805bba362a32033b8a0b254671dff196a0a4 /packages
parentbec4e798cb2a4c585e01884f06a3c741f1f55b7d (diff)
downloadarchweb-5bc85244281efc916132c86046018d0ebe70b5e9.tar.gz
archweb-5bc85244281efc916132c86046018d0ebe70b5e9.zip
Fix split packages sitemaprelease_2013-02-16
We had a ton of duplicate entries included due to the query implicitly including a 'GROUP BY' clause on the default sorting by pkgname. Fix it and cut the sitemap down to the correct size without duplicate entries. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'packages')
-rw-r--r--packages/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/utils.py b/packages/utils.py
index 49aeb8ce..ef6311eb 100644
--- a/packages/utils.py
+++ b/packages/utils.py
@@ -79,7 +79,7 @@ def get_split_packages_info():
pkgnames = Package.objects.values('pkgname')
split_pkgs = Package.objects.exclude(pkgname=F('pkgbase')).exclude(
pkgbase__in=pkgnames).values('pkgbase', 'repo', 'arch').annotate(
- last_update=Max('last_update'))
+ last_update=Max('last_update')).order_by().distinct()
all_arches = Arch.objects.in_bulk({s['arch'] for s in split_pkgs})
all_repos = Repo.objects.in_bulk({s['repo'] for s in split_pkgs})
for split in split_pkgs: