Expand my Community achievements bar.

no parent: no LiveCopy errors for content that does not exist

Avatar

Level 4

We are getting warning messages in our error.log file (LiveRelationshipManagerImpl StarResource : no parent: no LiveCopy errors for content that does not exist) for our pages.

Use case is we have included some parsys components on our page. After investigation, we found if parsys have some components dragged and dropped inside it, then warning message will not come but if there is no component dragged and dropped inside parsys then it’s throwing above waning message (Expecting some components inside it). Someone had already posted this issue on Adobe forum, but no reply. Is this bug in AEM 6 or anyone faced same issue??

http://help-forums.adobe.com/content/adobeforums/en/experience-manager-forum/adobe-experience-manage...

Regards

Sreeni

1 Reply

Avatar

Level 4

These warnings are usually generated when there is a parsys included and the parsys is empty without any components added to it. For example in the below code parsys "warning_test", a node warning_test is not created until there is a component added to parsys "warning_test" and hence the warning message. Adding a component to the parsys should create a node and avoid the warning.

These warnings are not related to MSM live copies and does not appear to have a detrimental effect.

<div class="grid_12 body_container">

        <cq:include script="redirect.jsp"/>

        <cq:include path="par" resourceType="foundation/components/parsys"/>

    </div>

    <div class="grid_4 right_container">

        <cq:include path="rightpar" resourceType="foundation/components/iparsys"/>

    </div>

        Adobe Test Warning Message

        <cq:include path="warning_test" resourceType="foundation/components/parsys"/>

    <div class="clear"></div>

</div>