From 39194de8ca8abd0380dfef7a8fd25271561c705f Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Wed, 24 Aug 2011 09:52:03 +1000 Subject: [PATCH] misc/dashboard: remove limit for json package list R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/4937048 --- misc/dashboard/godashboard/package.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/dashboard/godashboard/package.py b/misc/dashboard/godashboard/package.py index 5cc2d2404a..7feac8286b 100644 --- a/misc/dashboard/godashboard/package.py +++ b/misc/dashboard/godashboard/package.py @@ -211,7 +211,7 @@ class PackagePage(webapp.RequestHandler): q = Package.all() s = '{"packages": [' sep = '' - for r in q.fetch(1000): + for r in q: s += '%s\n\t{"path": "%s", "last_install": "%s", "count": "%s"}' % (sep, r.path, r.last_install, r.count) sep = ',' s += '\n]}\n' -- 2.50.0