Skip to content

Commit

Permalink
Fix event registry test on non-H2 database
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarrez committed Jul 3, 2024
1 parent d60457f commit c5bf75a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public class EngineConfiguration {
@Bean
public DataSource dataSource() {
HikariDataSource dataSource = new HikariDataSource();
dataSource.setJdbcUrl("jdbc:h2:mem:flowable;DB_CLOSE_DELAY=1000");
dataSource.setJdbcUrl(jdbcUrl);
dataSource.setDriverClassName(jdbcDriver);
dataSource.setUsername(jdbcUsername);
dataSource.setPassword(jdbcPassword);
Expand Down

0 comments on commit c5bf75a

Please sign in to comment.