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
  • 4 replies
  • 65 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 ?

4 replies

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

JakeCham
JakeChamAuthor
Level 6
April 20, 2026

I have changed CQ MSM Content Update Action ->Excluded Page Properties →
from jcr:.* to jcr:(?!(title)$).* to get to sync jcr:title from master to live copies ...now it is getting sync and Is this okay ?
since this is a OOTB configuration we need directly change in system/console/configMgr evene in prod environment ?

lavishvasuja
Level 4
April 19, 2026

@JakeCham -

If jcr:title / jcr:description aren’t syncing via MSM, it’s usually not due to explicit OOTB exclusion. The first thing to check is whether inheritance is broken on the live copy—if those properties were modified locally, MSM won’t overwrite them during rollout.

Since nothing exists under /apps/msm, you’re using the OOTB rollout configs from /libs/msm/wcm/rolloutconfigs, which is expected. Also, MSM doesn’t define property-level rules in rollout configs—it works via sync actions.

If inheritance is intact and the issue still persists, it’s worth checking the OSGi config for com.day.cq.wcm.msm.impl.actions.ContentUpdateActionFactory to see if any excluded property patterns have been customized.

No need to raise an Adobe ticket—this is standard MSM behavior and is typically resolved through inheritance or configuration checks.

Level 3
April 20, 2026

Hi ​@JakeCham 

 

Question 1: Why are jcr:title and jcr:description not syncing with OOTB rollout, and how to add them?

  • This is expected OOTB MSM behavior.

  • After a Live Copy is created, page metadata like jcr:title and jcr:description is treated as author‑owned and is not re-synced on subsequent rollouts.

  • These properties are not excluded via an obvious excludeProps rule, but are skipped by the internal MSM rollout logic.

Adobe ticket is not required.

JakeCham
JakeChamAuthor
Level 6
April 20, 2026

I have changed CQ MSM Content Update Action ->Excluded Page Properties →
from jcr:.* to jcr:(?!(title)$).* to get to sync jcr:title from master to live copies ...now it is getting sync and Is this okay ?
since this is a OOTB configuration we need directly change in system/console/configMgr evene in prod environment ?

PGURUKRISHNA
Level 5
April 20, 2026

Hey ​@JakeCham 

  1. Verify 

    cq:propertyInheritanceCancelled
     on the live copy page's 
    jcr:content
     — this is the #1 cause.
  2. Try a manual rollout from the blueprint and check if the properties sync.

  3. Check if the live copy was created with 

    deep=false
     or if the relationship is detached.
  4. Review AEM error logs during rollout for any MSM-related exceptions.

Only raise an Adobe ticket if you've confirmed inheritance is intact, no custom exclusions exist, and the properties still don't sync , that would indicate a potential platform bug.

Pagidala GuruKrishna