From c874e53824819ffe38275e6d3950fa88d11a21e8 Mon Sep 17 00:00:00 2001 From: Matt Ward Date: Thu, 5 Apr 2012 16:26:01 +0000 Subject: [PATCH] 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 --- source/java/org/alfresco/repo/webdav/PutMethod.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/java/org/alfresco/repo/webdav/PutMethod.java b/source/java/org/alfresco/repo/webdav/PutMethod.java index 056a0e569b..17d43a3470 100644 --- a/source/java/org/alfresco/repo/webdav/PutMethod.java +++ b/source/java/org/alfresco/repo/webdav/PutMethod.java @@ -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()); }