Skip to content

Commit

Permalink
update upgrade step to fix indexing on large sites
Browse files Browse the repository at this point in the history
  • Loading branch information
luca-bellenghi committed Oct 17, 2024
1 parent 7827f97 commit 38d0fe4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ Changelog
6.2.20 (unreleased)
-------------------

- Nothing changed yet.
- Fix upgrade step
[lucabel]


6.2.19 (2024-09-23)
Expand Down
2 changes: 1 addition & 1 deletion src/design/plone/contenttypes/upgrades/to_730x.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def to_7303(context):


def to_7304(context):
brains = context.portal_catalog()
brains = context.portal_catalog(**{'portal_type': 'Event'})
tot = len(brains)
i = 0
for brain in brains:
Expand Down

0 comments on commit 38d0fe4

Please sign in to comment.