jcr:title and jcr:description is not getting sync when I use OOTB rollout in cloud sdk | Community
Skip to main content
JakeCham
Level 6
April 17, 2026
Question

jcr:title and jcr:description is not getting sync when I use OOTB rollout in cloud sdk

  • April 17, 2026
  • 1 reply
  • 17 views

Hi Team,

Question 1

I am using cloud SDK and experiencing jcr:title and jcr:description is not getting sync when I use OOTB rollout from master to live copies.
anywhere I can look into custom configuration and add these properties.
How to add them if they are not added ?

 

Question 2


I have checked libs/msm/wcm/rolloutconfigs and could not find anything related to these properties such as exclude node. I checked in apps/msm and could not find a custom configurations either so that meant we are using OOTB configuration only ? in that case do we need to raise a adobe ticket for this ?

1 reply

Level 2
April 17, 2026

Some properties are exluded by default in Multi-Site Manager (MSM), thus they are  not synced.

Try this:

  1. Modify the regular expression in the OSGi configuration (CQ MSM Content Update Action - com.day.cq.wcm.msm.impl.actions.ContentUpdateActionFactory) to include your custom property.

    For example, to include cq:styleIds, change the regex from:

    cq:(?!(designPath|template|lastTranslationUpdate|targetEngine|robotsTags)$).*

    to:

    cq:(?!(designPath|template|lastTranslationUpdate|targetEngine|robotsTags|styleIds)$).*

  2. Add the updated configuration to your deployment pipeline for cloud environments as shown below:

    cq.wcm.msm.action.excludedprops = [
    "jcr:.*",
    "sling:(?!(resourceType|resourceSuperType)$).*",
    "cq:(?!(designPath|template|lastTranslationUpdate|targetEngine|robotsTags|styleIds)$).*",
    "publishCampaignId"
    ]

     

  3. Deploy and verify changes in the development environment.

  4. Roll out again and verify the property synchronizes correctly across all live copies.

More information:
https://experienceleague.adobe.com/en/docs/experience-manager-65/content/sites/administering/introduction/msm-sync?lang=en#excluding-properties-and-node-types-from-synchronization

https://experienceleague.adobe.com/en/docs/experience-cloud-kcs/kbarticles/ka-27312