Skip to content
Snippets Groups Projects
Commit 649a4477 authored by srosse's avatar srosse
Browse files

FXOLAT-206: make the Quartz Job which clean-up Adobe Connect Meeting works...

FXOLAT-206: make the Quartz Job which clean-up Adobe Connect Meeting works without change in the XML configuration

--HG--
branch : FXOLAT-282-virtualclassroom
parent 3de66837
No related branches found
No related tags found
No related merge requests found
...@@ -68,17 +68,6 @@ ...@@ -68,17 +68,6 @@
<!-- ################################## --> <!-- ################################## -->
<!-- # VIRTUAL CLASSROOM SERVICE JOBS # --> <!-- # VIRTUAL CLASSROOM SERVICE JOBS # -->
<!-- ################################## --> <!-- ################################## -->
<!-- Activation of the service jobs -->
<bean class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
<property name="triggers">
<list>
<!-- <ref local="adobeCleanupJob" /> -->
</list>
</property>
</bean>
<!-- Definition of the service jobs -->
<bean id="adobeCleanupJob" class="org.springframework.scheduling.quartz.CronTriggerBean"> <bean id="adobeCleanupJob" class="org.springframework.scheduling.quartz.CronTriggerBean">
<property name="jobDetail"> <property name="jobDetail">
<bean class="org.springframework.scheduling.quartz.JobDetailBean"> <bean class="org.springframework.scheduling.quartz.JobDetailBean">
...@@ -94,6 +83,7 @@ ...@@ -94,6 +83,7 @@
</bean> </bean>
</property> </property>
<property name="cronExpression" value="0 0 2 * * ?"/><!-- 2am, daily --> <property name="cronExpression" value="0 0 2 * * ?"/><!-- 2am, daily -->
<property name="startDelay" value="45000" />
</bean> </bean>
</beans> </beans>
\ No newline at end of file
...@@ -53,9 +53,7 @@ public class AdobeConnectCleanupJob extends QuartzJobBean { ...@@ -53,9 +53,7 @@ public class AdobeConnectCleanupJob extends QuartzJobBean {
AdobeConnectProvider adobe = null; AdobeConnectProvider adobe = null;
boolean success = VCProviderFactory.existsProvider(providerId); boolean success = VCProviderFactory.existsProvider(providerId);
if(!success) { if(!success) return;//same as dummy job
throw new JobExecutionException("Invalid configuration: defined a virtual classroom cleanup job for non existing provider \"" + providerId + "\"");
}
try { try {
adobe = (AdobeConnectProvider) VCProviderFactory.createProvider(providerId); adobe = (AdobeConnectProvider) VCProviderFactory.createProvider(providerId);
...@@ -63,9 +61,9 @@ public class AdobeConnectCleanupJob extends QuartzJobBean { ...@@ -63,9 +61,9 @@ public class AdobeConnectCleanupJob extends QuartzJobBean {
throw new JobExecutionException("Invalid configuration: defined a virtual classroom cleanup job and provider implementation doesn't fit"); throw new JobExecutionException("Invalid configuration: defined a virtual classroom cleanup job and provider implementation doesn't fit");
} }
success = adobe.isProviderAvailable(); success = adobe.isProviderAvailable() && adobe.isEnabled();
if(!success) { if(!success) {
logger.error("Tried to cleanup Adobe Connect meetings but it's actually not available"); logger.debug("Tried to cleanup Adobe Connect meetings but it's actually not available");
return; return;
} }
......
...@@ -36,6 +36,7 @@ How to add a new job: ...@@ -36,6 +36,7 @@ How to add a new job:
<ref bean="changePresenceJobTrigger" /> <ref bean="changePresenceJobTrigger" />
<!-- <ref bean="dumpJMXJobTrigger"/> --> <!-- <ref bean="dumpJMXJobTrigger"/> -->
<ref bean="registrationTrigger"/> <ref bean="registrationTrigger"/>
<ref bean="adobeCleanupJob"/>
<!-- <!--
<ref bean="translationToolStatusGeneratorTrigger"/> <ref bean="translationToolStatusGeneratorTrigger"/>
--> -->
......
...@@ -23,6 +23,7 @@ How to add a new job: ...@@ -23,6 +23,7 @@ How to add a new job:
<!-- this tells spring to create the quartz scheduler --> <!-- this tells spring to create the quartz scheduler -->
<!--
<bean id="schedulerFactoryBean" class="org.springframework.scheduling.quartz.SchedulerFactoryBean"> <bean id="schedulerFactoryBean" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
<property name="quartzProperties"> <property name="quartzProperties">
<props> <props>
...@@ -31,11 +32,11 @@ How to add a new job: ...@@ -31,11 +32,11 @@ How to add a new job:
</property> </property>
<property name="triggers"> <property name="triggers">
<list> <list>
<!-- Include every bean here that should be scheduled -->
<!-- <ref bean="cronTrigger" /> -->
</list> </list>
</property> </property>
</bean> </bean>
-->
<!-- Example bean for cron style scheduling--> <!-- Example bean for cron style scheduling-->
<!-- OLAT-5093 start delay ensures there's no conflict with server startup and db not being ready yet --> <!-- OLAT-5093 start delay ensures there's no conflict with server startup and db not being ready yet -->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment