diff --git a/amps/ags/rm-community/rm-community-repo/docker-compose.yml b/amps/ags/rm-community/rm-community-repo/docker-compose.yml index 2b3b10a747..518cfee906 100644 --- a/amps/ags/rm-community/rm-community-repo/docker-compose.yml +++ b/amps/ags/rm-community/rm-community-repo/docker-compose.yml @@ -41,6 +41,8 @@ services: -Daos.baseUrlOverwrite=http://localhost:8080/alfresco/aos -Dmessaging.broker.url=\"failover:(tcp://activemq:61616)?timeout=3000&jms.useCompression=true\" -DlocalTransform.core-aio.url=http://transform-core-aio:8090/ + -Drm.hold.bulk.maxItems=30 + -Drm.hold.bulk.batchSize=10 " ports: - 8080:8080 diff --git a/amps/ags/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/bulk/hold/DefaultHoldBulkMonitor.java b/amps/ags/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/bulk/hold/DefaultHoldBulkMonitor.java index 103e5da7e1..bf5773c63f 100644 --- a/amps/ags/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/bulk/hold/DefaultHoldBulkMonitor.java +++ b/amps/ags/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/bulk/hold/DefaultHoldBulkMonitor.java @@ -44,8 +44,8 @@ import org.springframework.extensions.surf.util.AbstractLifecycleBean; */ public class DefaultHoldBulkMonitor extends AbstractLifecycleBean implements HoldBulkMonitor { - private SimpleCache holdProgressCache; - private SimpleCache> holdProcessRegistry; + protected SimpleCache holdProgressCache; + protected SimpleCache> holdProcessRegistry; public void updateBulkStatus(HoldBulkStatus holdBulkStatus) { @@ -91,16 +91,6 @@ public class DefaultHoldBulkMonitor extends AbstractLifecycleBean implements Hol this.holdProcessRegistry = holdProcessRegistry; } - public SimpleCache getHoldProgressCache() - { - return holdProgressCache; - } - - public SimpleCache> getHoldProcessRegistry() - { - return holdProcessRegistry; - } - @Override protected void onBootstrap(ApplicationEvent applicationEvent) {