From 1a2709552704a91f9601a13c350153b3daf3a455 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Mon, 8 Dec 2014 20:28:54 -0600 Subject: Fix issue with memcache being unable to pickle new QS When we changed the query here, things got a little weird and we could no longer pickle. Signed-off-by: Dan McGee --- devel/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/devel/utils.py b/devel/utils.py index 68ae5bdc..bd57def9 100644 --- a/devel/utils.py +++ b/devel/utils.py @@ -45,7 +45,8 @@ SELECT pr.user_id, COUNT(*), COUNT(p.flag_date) m.flagged_count = flag_count.get(m.id, 0) m.updated_count = update_count.get(m.id, 0) - return maintainers + # force non-QS context, otherwise pickling doesn't work + return list(maintainers) def ignore_does_not_exist(func): -- cgit v1.2.3