You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 19, 2021. It is now read-only.
I have a node of type "cm:content" which does not have property "ContentModel.PROP_CONTENT" within a "cm:folder".
The bulk export does not export this node because of:
ContentReader reader = contentService.getReader(nodeRef, ContentModel.PROP_CONTENT);
if (reader == null)
{
// no data for this node
return false;
}
On Dec 7, 2017 12:40 PM, "Giuseppe Malanga" ***@***.***> wrote:
I have done a fix for this issue, amending the following method:
org.alfresco.extensions.bulkexport.controler.Engine.doCreateFile(NodeRef,
String)
and commented out the return statement, as shown below:
if (this.dao.getContentAndStoreInFile(file, fname) == false)
{
log.debug("doCreateFile ignore this file");
// return;
}
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#17 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AG5Ukxpi2gARLJ1vBGxPaKKiFFwWSOEPks5s9_jtgaJpZM4Q4bZw>
.
I have a node of type "cm:content" which does not have property "ContentModel.PROP_CONTENT" within a "cm:folder".
The bulk export does not export this node because of:
within the following method:
org.alfresco.extensions.bulkexport.dao.AlfrescoExportDaoImpl.getContentAndStoreInFile(NodeRef, String)
The text was updated successfully, but these errors were encountered: