aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dashboard/app/reporting.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/dashboard/app/reporting.go b/dashboard/app/reporting.go
index 0db180afb..a1d916fbb 100644
--- a/dashboard/app/reporting.go
+++ b/dashboard/app/reporting.go
@@ -733,7 +733,7 @@ func loadOpenBugs(c context.Context) ([]*Bug, []*db.Key, error) {
}
func foreachBug(c context.Context, filter func(*db.Query) *db.Query, fn func(bug *Bug, key *db.Key) error) error {
- const batchSize = 1000
+ const batchSize = 2000
var cursor *db.Cursor
for {
query := db.NewQuery("Bug").Limit(batchSize)