WebDAV: metadata extraction is now synchronous.

* For versionable nodes asynchronous extraction will cause a new version of the document to be created.
* The metadata should be populated in the same transaction as the upload - asynchronous rules should be configured separately.




git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@35118 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Matt Ward
2012-04-05 16:26:01 +00:00
parent 931bcfe451
commit c874e53824

View File

@@ -234,7 +234,7 @@ public class PutMethod extends WebDAVMethod implements ActivityPostProducer
Action extract = getActionService().createAction(ContentMetadataExtracter.EXECUTOR_NAME);
if(extract != null)
{
extract.setExecuteAsynchronously(true);
extract.setExecuteAsynchronously(false);
getActionService().executeAction(extract, contentNodeInfo.getNodeRef());
}