Commit ede919f6 authored by Vincent Pelletier's avatar Vincent Pelletier

Revert "erp5_discussion: speed up forum RSS generation"

This reverts commit fe84b799.
I did not intend to push that hash (copy/paste mistake).
parent fe84b799
......@@ -13,4 +13,5 @@ if len(parent_uid_list)==0:
# no parent discussion threads therefore no posts
return []
return context.portal_catalog(**kw)
result = [x.getObject() for x in context.portal_catalog(**kw)]
return result
  • @tc : beware when rebasing over master, please double-check you do not loose your commit because of my mistake !

  • It is ok, I always have a copy in another branch.

  • The issue is not about whether there are copies of this commit elsewhere: now it is also in public master too. But when you will rebase, rebase may consider that commit was already applied upstream (despite the revert), and discard it from its patch stack. Please be careful about this.

    Edited by Vincent Pelletier
  • I just rebased my branch, my commit is HEAD, above your revert. Thanks for the warning.

Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment