mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
SAIL-232: AppliedPatch.hbm.xml
- Basic CREATE script for core tables: AlfrescoCreate-3.3-RepoTables.sql - Removed Hibernate control of alf_applied_patch git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18101 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -90,7 +90,7 @@ public class PatchExecuter extends AbstractLifecycleBean
|
||||
Date after = new Date(System .currentTimeMillis() + 20000L); // 20 seconds ahead
|
||||
|
||||
// get all the patches executed in the time
|
||||
List<PatchInfo> appliedPatches = patchService.getPatches(before, after);
|
||||
List<AppliedPatch> appliedPatches = patchService.getPatches(before, after);
|
||||
|
||||
// don't report anything if nothing was done
|
||||
if (appliedPatches.size() == 0)
|
||||
@@ -101,7 +101,7 @@ public class PatchExecuter extends AbstractLifecycleBean
|
||||
{
|
||||
boolean succeeded = true;
|
||||
// list all patches applied, including failures
|
||||
for (PatchInfo patchInfo : appliedPatches)
|
||||
for (AppliedPatch patchInfo : appliedPatches)
|
||||
{
|
||||
if (!patchInfo.getWasExecuted())
|
||||
{
|
||||
|
Reference in New Issue
Block a user