You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
plone.volto creates a custom index for block_types which returns a set. This doesn't cause any issues for the portal catalog but the data can't be directly serialized to json.
plone.volto creates a custom index for
block_types
which returns a set. This doesn't cause any issues for the portal catalog but the data can't be directly serialized to json.see: https://github.com/plone/plone.volto/blob/63715cca4f6dc9129f1d9ab4d2f7d068620ec2e7/src/plone/volto/indexers.py#L39-L48
The data seems to just be a simple list, and possibly the best fix might be to question why it is a set.
I have a PR which I will link that serializes sets to lists when indexing to es and resolves the issue
The text was updated successfully, but these errors were encountered: