Merge branch '3.3.x'

Closes gh-43484
This commit is contained in:
Moritz Halbritter 2024-12-11 14:25:44 +01:00
commit 61bab92231
1 changed files with 2 additions and 2 deletions

View File

@ -75,8 +75,8 @@ public class H2ConsoleAutoConfiguration {
}
@Bean
H2ConsoleLogger h2ConsoleLogger(ObjectProvider<DataSource> dataSource) {
return new H2ConsoleLogger(dataSource, this.properties.getPath());
H2ConsoleLogger h2ConsoleLogger(ObjectProvider<DataSource> dataSources) {
return new H2ConsoleLogger(dataSources, this.properties.getPath());
}
private void configureH2ConsoleSettings(ServletRegistrationBean<JakartaWebServlet> registration,