-
Notifications
You must be signed in to change notification settings - Fork 71
Description
We have a setup with a dimension "zz" that only shares the rootpage for language selection, but is defaultPreset.
In the latest version of the Adaptor (on Neos 5.2 & ES 7) nodeindex:build will index only the nodes that are found in the zz dimension and their respective dimension representatives. So we end up with only Home being indexed in all dimensions, but no further pages.
A change introduced that we found is in NodeIndexCommandController:
Instead of calling $this->workspaceIndexer->index()
, $this->workspaceIndexer->indexWithDimensions()
is being called, which doesn't loop over dimensions initially.
But in order for the nodes to be indexed independently in all dimensions, it still doesnt work properly, since the rootNode still is "dimensionless":
Flowpack.ElasticSearch.ContentRepositoryAdaptor/Classes/Indexer/WorkspaceIndexer.php
Line 89 in 0660ba2
$rootNode = $context->getRootNode(); |