Skip to content

Commit

Permalink
BUGFIX: ./flow cr:migratelegacydata warn if no migrated `contentDim…
Browse files Browse the repository at this point in the history
…ensions` configuration
  • Loading branch information
mhsdesign committed Jul 6, 2023
1 parent 35bc7f7 commit 0da08d8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ public function processNodeDataWithoutFallbackToEmptyDimension(NodeAggregateId $
$nodePath = NodePath::fromString(strtolower($nodeDataRow['path']));
$parentNodeAggregate = $this->visitedNodes->findMostSpecificParentNodeInDimensionGraph($nodePath, $originDimensionSpacePoint, $this->interDimensionalVariationGraph);
if ($parentNodeAggregate === null) {
$this->dispatch(Severity::ERROR, 'Failed to find parent node for node with id "%s" and dimensions: %s. The old CR can sometimes have orphaned nodes.', $nodeAggregateId->value, $originDimensionSpacePoint->toJson());
$this->dispatch(Severity::ERROR, 'Failed to find parent node for node with id "%s" and dimensions: %s. Please ensure that the new content repository has a valid content dimension configuration. Also note that the old CR can sometimes have orphaned nodes.', $nodeAggregateId->value, $originDimensionSpacePoint->toJson());
return;
}
$pathParts = $nodePath->getParts();
Expand Down

0 comments on commit 0da08d8

Please sign in to comment.