-
Notifications
You must be signed in to change notification settings - Fork 41.1k
Quartz may attempt to use the DataSource before migrations have been run #17528
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
status: superseded
An issue that has been superseded by another
Comments
Using spring-boot-2.1.6.RELEASE |
nosan
added a commit
to nosan/spring-boot
that referenced
this issue
Jul 16, 2019
Flyway and Liquibase. see spring-projectsgh-17528
nosan
added a commit
to nosan/spring-boot
that referenced
this issue
Jul 16, 2019
Flyway and Liquibase. see spring-projectsgh-17528
nosan
added a commit
to nosan/spring-boot
that referenced
this issue
Jul 16, 2019
Flyway and Liquibase. see spring-projectsgh-17528
nosan
added a commit
to nosan/spring-boot
that referenced
this issue
Jul 17, 2019
Flyway and Liquibase. see spring-projectsgh-17528
Closing in favour of #17539. |
nosan
added a commit
to nosan/spring-boot
that referenced
this issue
Jul 17, 2019
Flyway and Liquibase. see spring-projectsgh-17528
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am trying to use flyway handling the quartz schema initialization, but it seems
QuartzAutoConfiguration
is always processed ahead ofFlywayAutoConfiguration
, which will raise the[org.quartz.JobPersistenceException: Couldn't retrieve job: ORA-00942]
exception, because the quartz schema is not initialized yet(I am using jdbc as the quartz job store type,spring.quartz.job-store-type=jdbc
).So, am i got something wrong , or maybe should put
THX!!
The text was updated successfully, but these errors were encountered: