move clustered quartz from cm db to pers db

This commit is contained in:
Ken Stevens 2019-12-02 14:32:34 -05:00
parent 993d8220d1
commit f29118fa9c
2 changed files with 6 additions and 4 deletions

View File

@ -55,7 +55,12 @@ public class HapiFhirJpaMigrationTasks extends BaseMigrationTasks<VersionEnum> {
init350(); // 20180601 - 20180917
init360(); // 20180918 - 20181112
init400(); // 20190401 - 20190814
init410(); // 20190815 - present
init410(); // 20190815 - 20191014
init420(); // 20191015 - present
}
protected void init420() { // 20191015 - present
Builder version = forVersion(VersionEnum.V4_2_0);
}
protected void init410() { // 20190815 - present

View File

@ -22,10 +22,7 @@ package ca.uhn.fhir.jpa.model.sched;
import org.quartz.DisallowConcurrentExecution;
import org.quartz.Job;
import org.quartz.PersistJobDataAfterExecution;
@DisallowConcurrentExecution
// TODO KHS do we still need this?
@PersistJobDataAfterExecution
public interface HapiJob extends Job {
}