mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged HEAD-BUG-FIX (4.3/Cloud) to HEAD (4.3/Cloud)
57055: Merged V4.2-BUG-FIX (4.2.1) to HEAD-BUG-FIX (Cloud/4.3) 56523: Merged HEAD-BUG-FIX to V4.2-BUG-FIX (4.2.1) 56443: (MNT-9756) ALF-19225: Made post feeds cleanup to be executed in the unit test tear down method, to clean Pending, Error and etc. feeds. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@61689 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -37,7 +37,6 @@ import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import java.util.TreeMap;
|
||||
|
||||
import org.alfresco.repo.activities.post.lookup.PostLookup;
|
||||
import org.alfresco.repo.domain.activities.ActivityFeedDAO;
|
||||
@@ -134,7 +133,7 @@ public abstract class FeedTaskProcessor
|
||||
}
|
||||
catch(JSONException je)
|
||||
{
|
||||
logger.error("Skipping activity post " + activityPost.getId() + " due to invalid activity data: " + je);
|
||||
logger.error("Skipping activity post " + activityPost.getId() + " due to invalid activity data: ", je);
|
||||
updatePostStatus(activityPost.getId(), ActivityPostEntity.STATUS.ERROR);
|
||||
continue;
|
||||
}
|
||||
@@ -195,7 +194,7 @@ public abstract class FeedTaskProcessor
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
logger.error("Skipping activity post " + activityPost.getId() + " since failed to get recipients: " + e);
|
||||
logger.error("Skipping activity post " + activityPost.getId() + " since failed to get recipients: ", e);
|
||||
updatePostStatus(activityPost.getId(), ActivityPostEntity.STATUS.ERROR);
|
||||
continue;
|
||||
}
|
||||
|
Reference in New Issue
Block a user