Skip to content

Commit

Permalink
fixed compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rPraml committed Jan 2, 2024
1 parent ee3eeb6 commit f51f437
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* module info.</li>
* <li>Using <b>jdbcMigrations</b> property<br>
* you can specify all migrations in the jdbcMigrations property</li>
* <li>Using own <b>jdbcMigrationFactory</b<br>
* <li>Using own <b>jdbcMigrationFactory</b><br>
* you can write your own jdbcMigrationFactory that provides JdbcMigrations</li>
* </ul>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ private long executeMigration(LocalMigrationResource local, String script) throw
if (local instanceof LocalJdbcMigrationResource) {
JdbcMigration migration = ((LocalJdbcMigrationResource) local).migration();
log.log(INFO, "Executing jdbc migration version: {0} - {1}", local.version(), migration);
migration.migrate(context.connection());
migration.migrate(context);
} else {
log.log(DEBUG, "run migration {0}", local.location());
scriptRunner.runScript(script, "run migration version: " + local.version());
Expand Down

0 comments on commit f51f437

Please sign in to comment.