Monday 4 May 2020

AEM | MSM | Blueprint livecopy sync issue for few properties

Issues:
Few properties like jcr:title, which starts with sling: and which starts with cq: is not getting rolled out.

Root cause:

Several properties and node types are excluded by default, these are defined in the OSGi configuration of CQ MSM Content Update Action, under Excluded Page Properties. Silimary update same values for CQ MSM Content Delete Action and CQ MSM Content Copy Action too. By default properties matching the following regular expressions are excluded (i.e. not updated) on rollout:


Fix:
As shown about we can mention properties which we don't want to be excluded while rollout

Eaxmple:
If we want jcr:title and jcr:description also to be rolled out
replace config value jcr:.* with below value
jcr:(?!(description|title)$).*


No comments:

Post a Comment