mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
REPO-4065:Service Pack: MNT-20097 taggingStartupTrigger and downloadCleanerSchedulerAccessor jobs are missconfigured
This commit is contained in:
@@ -121,7 +121,7 @@
|
|||||||
<property name="triggers">
|
<property name="triggers">
|
||||||
<list>
|
<list>
|
||||||
<bean id="downloadCleanerTrigger" class="org.springframework.scheduling.quartz.SimpleTriggerFactoryBean">
|
<bean id="downloadCleanerTrigger" class="org.springframework.scheduling.quartz.SimpleTriggerFactoryBean">
|
||||||
<property name="repeatInterval" value="${download.cleaner.repeatIntervalSeconds}"/>
|
<property name="repeatInterval" value="${download.cleaner.repeatIntervalMilliseconds}"/>
|
||||||
<property name="startDelay" value="${download.cleaner.startDelayMilliseconds}"/>
|
<property name="startDelay" value="${download.cleaner.startDelayMilliseconds}"/>
|
||||||
<property name="jobDetail">
|
<property name="jobDetail">
|
||||||
<bean class="org.springframework.scheduling.quartz.JobDetailFactoryBean">
|
<bean class="org.springframework.scheduling.quartz.JobDetailFactoryBean">
|
||||||
|
@@ -953,7 +953,8 @@ ticket.cleanup.cronExpression=0 0 * * * ?
|
|||||||
# Download Service Cleanup
|
# Download Service Cleanup
|
||||||
#
|
#
|
||||||
download.cleaner.startDelayMilliseconds=3600000
|
download.cleaner.startDelayMilliseconds=3600000
|
||||||
download.cleaner.repeatIntervalSeconds=3600
|
# 1 hour
|
||||||
|
download.cleaner.repeatIntervalMilliseconds=3600000
|
||||||
download.cleaner.maxAgeMins=60
|
download.cleaner.maxAgeMins=60
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@@ -133,7 +133,7 @@
|
|||||||
<!-- Tagging Service Scope Updates -->
|
<!-- Tagging Service Scope Updates -->
|
||||||
<!-- (Catches any updates queued but not executed around repo shutdown -->
|
<!-- (Catches any updates queued but not executed around repo shutdown -->
|
||||||
<bean id="taggingStartupTrigger" class="org.springframework.scheduling.quartz.SimpleTriggerFactoryBean">
|
<bean id="taggingStartupTrigger" class="org.springframework.scheduling.quartz.SimpleTriggerFactoryBean">
|
||||||
<property name="repeatInterval" value="3600"/> <!-- 60 minutes -->
|
<property name="repeatInterval" value="3600000"/> <!-- 60 minutes -->
|
||||||
<property name="startDelay" value="120"/>
|
<property name="startDelay" value="120"/>
|
||||||
<property name="jobDetail">
|
<property name="jobDetail">
|
||||||
<bean class="org.springframework.scheduling.quartz.JobDetailFactoryBean">
|
<bean class="org.springframework.scheduling.quartz.JobDetailFactoryBean">
|
||||||
|
Reference in New Issue
Block a user