The Get Archives Job runs OTB and its only real reason for existence is to load some sample sites from an archive on nightlies.
I suggest disabling the Get Archives from running by default and just add some config to nightlies to run it there which is the only place that seems to need it.
Relevant code:
<!-- This is to automatically import some sites on startup. -->
<bean class="org.sakaiproject.component.app.scheduler.AutoRun" init-method="init">
<property name="schedulerManager" ref="org.sakaiproject.api.app.scheduler.SchedulerManager"/>
<property name="serverConfigurationService" ref="org.sakaiproject.component.api.ServerConfigurationService"/>
<property name="startup">
<list>
<ref bean="org.sakaiproject.component.app.scheduler.jobs.autoimport.GetArchivesJob"/>
</list>
</property>
</bean>
The Get Archives Job runs OTB and its only real reason for existence is to load some sample sites from an archive on nightlies.
I suggest disabling the Get Archives from running by default and just add some config to nightlies to run it there which is the only place that seems to need it.
Relevant code:
<!-- This is to automatically import some sites on startup. --> <bean class="org.sakaiproject.component.app.scheduler.AutoRun" init-method="init"> <property name="schedulerManager" ref="org.sakaiproject.api.app.scheduler.SchedulerManager"/> <property name="serverConfigurationService" ref="org.sakaiproject.component.api.ServerConfigurationService"/> <property name="startup"> <list> <ref bean="org.sakaiproject.component.app.scheduler.jobs.autoimport.GetArchivesJob"/> </list> </property> </bean>