-
Notifications
You must be signed in to change notification settings - Fork 40.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Order detector for AbstractDataSourceInitializers
Previously, the detector for AbstractDataSourceInitializers used the default detector order. This resulted in the initializers detected initializers running before Flyway. Constrastingly, the detector for DataSourceScriptDatabaseInitializers uses a custom order so its detected initializers would run after Flyway. This commit aligns the order of the detector for AbstractDataSourceInitializers with the order of the detector for DataSourceScriptDatabaseInitializers. This ensures that script-based initialization runs in the same order with respect to Flyway, irrespective of which initializer implementation is driving it. Fixes gh-28079
- Loading branch information
1 parent
90a5e34
commit 2ba5933
Showing
2 changed files
with
34 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters